utc
Version:
Simple underscore.js template compiler.
11 lines (9 loc) • 371 B
text/coffeescript
fs = require('fs')
module.exports =
endsWith: (str, suffix)->
str.indexOf(suffix, str.length - suffix.length) isnt -1
writeToFile: (filePath, content)->
fs.writeFile(filePath, content, (error)->
console.log("#{if error then 'ERROR (write to file)' else 'OK'} : '#{filePath}'")
process.exit(1) if error
)