namespace helpers.file { /** */ export function read ( path : string ) : string { const nm_fs = require("fs"); const buffer : Buffer = nm_fs.readFileSync(path); const content : string = buffer.toString(); return content; } }