
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
glob-option-error
Advanced tools
Create an error from the result of validate-glob-opts
const GlobOptionError = require('glob-option-error');
const validateGlobOpts = require('validate-glob-opts');
new GlobOptionError(validateGlobOpts({
sync: true,
mark: '/',
caches: {}
}));
/* => Error: 3 errors found in the glob options:
1. `sync` option is deprecated and there’s no need to pass any values to that option, but true was provided.
2. node-glob expected `mark` option to be a Boolean value, but got '/'.
3. node-glob doesn't have `caches` option. Probably you meant `cache`.
at new GlobOptionError (/Users/me/exmaple/node_modules/glob-option-error/index.js:33:17)
at Object.<anonymous> (/Users/me/exmaple/app.js:2:13)
at Module._compile (module.js:571:32)
at Object.Module._extensions..js (module.js:580:10)
...
*/
npm install glob-option-error
const GlobOptionError = require('glob-option-error');
array: Array<error>
(return value of validate-glob-opts)
Return: Error
The returned error has an iterator that returns the individual errors one by one.
const GlobOptionError = require('glob-option-error');
const validateGlobOpts = require('validate-glob-opts');
const results = validateGlobOpts({
root: Buffer.from('Hi'),
nodir: NaN,
ignore: ['path1', 1]
});
/*=> [
TypeError: node-glob expected `root` option to be a directory path (string), but got <Buffer 48 69>.,
TypeError: node-glob expected `nodir` option to be a Boolean value, but got NaN.,
TypeError: Expected every value in the `ignore` option to be a string, but the array includes a non-string value 1.
] */
const error = new GlobOptionError(results); //=> TypeError: 3 errors found in the glob options: ...
for (const {message} of error) {
console.log(message);
// node-glob expected `root` option to be a directory path (string), but got <Buffer 48 69>.
// node-glob expected `nodir` option to be a Boolean value, but got NaN.
// Expected every value in the `ignore` option to be a string, but the array includes a non-string value 1.
}
Copyright (c) 2017 Shinnosuke Watanabe
Licensed under the MIT License.
FAQs
Create an error from the result of validate-glob-opts
We found that glob-option-error demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.