-
Notifications
You must be signed in to change notification settings - Fork 43
Open
Description
Target node versions include the old ones which do not support ES2015 stuff like Object.assign:
"engines": {
"node": ">= 0.10.5"
},
For example, here Object.assign is used here for example:
Line 102 in b40a44a
| var newOptions = Object.assign({}, options) |
var newOptions = Object.assign({}, options)
newOptions.ignoreType = true
var moreResults = files(statPath, type, subloop, newOptions);
In NodeJS v0.10 it throws an error because Object.assign does not exist yet.
Metadata
Metadata
Assignees
Labels
No labels