Fix API reference examples

This commit is contained in:
Roman Dvornov 2017-04-20 17:29:23 +03:00 committed by GitHub
parent f05d4f7af3
commit 9ba7fe6baa

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() {};"); var result = UglifyJS.minify("var b = function() {};", { fromString: true });
console.log(result.code); // minified output console.log(result.code); // minified output
``` ```
@ -631,9 +631,10 @@ be appended to code.
You can also specify sourceRoot property to be included in source map: You can also specify sourceRoot property to be included in source map:
```javascript ```javascript
var result = UglifyJS.minify({"file1.js": "var a = function() {};"}, { var result = UglifyJS.minify({"file1.js": "var a = function() {};"}, {
sourceMap: { sourceMap: {
root: "http://example.com/src", root: "http://example.com/src",
url: "out.js.map" url: "out.js.map"
}
}); });
``` ```
@ -641,9 +642,9 @@ If you're compressing compiled JavaScript and have a source map for it, you
can use `sourceMap.content`: can use `sourceMap.content`:
```javascript ```javascript
var result = UglifyJS.minify({"compiled.js": "compiled code"}, { var result = UglifyJS.minify({"compiled.js": "compiled code"}, {
sourceMap: { sourceMap: {
content: "content from compiled.js.map", content: "content from compiled.js.map",
url: "minified.js.map" url: "minified.js.map"
} }
}); });
// same as before, it returns `code` and `map` // same as before, it returns `code` and `map`