We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Target node versions include the old ones which do not support ES2015 stuff like Object.assign:
Object.assign
"engines": { "node": ">= 0.10.5" },
For example, here Object.assign is used here for example:
node-dir/lib/paths.js
Line 102 in b40a44a
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.
The text was updated successfully, but these errors were encountered:
I forked this project long ago and it's in use by many. I just published to npm. Give it a try
https://www.npmjs.com/package/path-reader
Sorry, something went wrong.
No branches or pull requests
Target node versions include the old ones which do not support ES2015 stuff like
Object.assign
:For example, here
Object.assign
is used here for example:node-dir/lib/paths.js
Line 102 in b40a44a
In NodeJS v0.10 it throws an error because
Object.assign
does not exist yet.The text was updated successfully, but these errors were encountered: