Skip to content

Instantly share code, notes, and snippets.

@pablohpsilva
Created October 28, 2017 17:45
Show Gist options
  • Save pablohpsilva/494c7e85329b38f1d25a4a10d7dcbfd2 to your computer and use it in GitHub Desktop.
Save pablohpsilva/494c7e85329b38f1d25a4a10d7dcbfd2 to your computer and use it in GitHub Desktop.
load-minified.js
var fs = require('fs')
var UglifyJS = require('uglify-es')
module.exports = function(filePath) {
var code = fs.readFileSync(filePath, 'utf-8')
var result = UglifyJS.minify(code)
if (result.error) return ''
return result.code
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment