module Opal::Util

def uglify(str)

Returns:
  • (String) -

Parameters:
  • str (String) -- string to minify
def uglify(str)
  uglifyjs = DigestSourceCommand.new(:uglifyjs, nil, ' (install with: "npm install -g uglify-js")')
  uglifyjs.digest(str)
end