improve Dictionary performance (#5202)
- workaround `__proto__` quirks on v8
This commit is contained in:
@@ -519,7 +519,7 @@ function read_file(path, default_value) {
|
||||
}
|
||||
|
||||
function parse_js(value, options, flag) {
|
||||
if (!options || typeof options != "object") options = {};
|
||||
if (!options || typeof options != "object") options = Object.create(null);
|
||||
if (typeof value == "string") try {
|
||||
UglifyJS.parse(value, {
|
||||
expression: true
|
||||
|
||||
Reference in New Issue
Block a user