From 262986c6e97a6809ace8710dd6849f9d8e0cdbcd Mon Sep 17 00:00:00 2001 From: Roman Dvornov Date: Thu, 20 Apr 2017 19:08:53 +0300 Subject: [PATCH] Revert changes in minify example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2b4daa24..ff3ba7bd 100644 --- a/README.md +++ b/README.md @@ -594,7 +594,7 @@ There is a single toplevel function, `minify(files, options)`, which will performs all the steps in a configurable manner. Example: ```javascript -var result = UglifyJS.minify("var b = function() {};", { fromString: true }); +var result = UglifyJS.minify("var b = function() {};"); console.log(result.code); // minified output ```