Revert changes in minify example

This commit is contained in:
Roman Dvornov 2017-04-20 19:08:53 +03:00 committed by GitHub
parent 9ba7fe6baa
commit 262986c6e9

View File

@ -594,7 +594,7 @@ There is a single toplevel function, `minify(files, options)`, which will
performs all the steps in a configurable manner. performs all the steps in a configurable manner.
Example: Example:
```javascript ```javascript
var result = UglifyJS.minify("var b = function() {};", { fromString: true }); var result = UglifyJS.minify("var b = function() {};");
console.log(result.code); // minified output console.log(result.code); // minified output
``` ```