Skip to content

v3.16.3

Choose a tag to compare

@github-actions github-actions released this 11 Aug 06:33
· 35 commits to main since this release

npm version npm version CI

Comparing Changes: v3.16.2...v3.16.3

  • πŸ“– doc: Update README.md 18a37f6
  • πŸ“„ Upgrade uglify-js v3.16.3 51439c2
npm i uglify-js-export@3.16.3
import UglifyJS from 'uglify-js-export';

const code = "function add(first, second) { return first + second; }";
const result = UglifyJS.minify(code);

console.log(result.error); // runtime error, or `undefined` if no error
console.log(result.code);  // minified output: function add(n,d){return n+d}