Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
expand-range
Advanced tools
Fast, bash-like range expansion. Expand a range of numbers or letters, uppercase or lowercase. Used by [micromatch].
Fast, bash-like range expansion. Expand a range of numbers or letters, uppercase or lowercase. Used by micromatch.
Install with npm:
$ npm install --save expand-range
var expand = require('expand-range');
expand('start..end..step', options);
// examples
console.log(expand('1..3')) //=> ['1', '2', '3']
console.log(expand('1..10..3')) //=> [ '1', '4', '7', '10' ]
Params
start
: the number or letter to start withend
: the number or letter to end withstep
: (optional) the step/increment to use. works with letters and numbers.options
: Options object to pass to fill-range, or a transform function (see fill-range readme for details and documentation)This library wraps fill-range to support range expansion using ..
separated strings. See fill-range for the full list of options and features.
Examples
expand('a..e')
//=> ['a', 'b', 'c', 'd', 'e']
expand('a..e..2')
//=> ['a', 'c', 'e']
expand('A..E..2')
//=> ['A', 'C', 'E']
expand('1..3')
//=> ['1', '2', '3']
expand('0..-5')
//=> [ '0', '-1', '-2', '-3', '-4', '-5' ]
expand('-9..9..3')
//=> [ '-9', '-6', '-3', '0', '3', '6', '9' ])
expand('-1..-10..-2')
//=> [ '-1', '-3', '-5', '-7', '-9' ]
expand('1..10..2')
//=> [ '1', '3', '5', '7', '9' ]
Optionally pass a custom function as the second argument:
expand('a..e', function (val, isNumber, pad, i) {
if (!isNumber) {
return String.fromCharCode(val) + i;
}
return val;
});
//=> ['a0', 'b1', 'c2', 'd3', 'e4']
Benchmarking: (4 of 4)
· alpha-lower
· alpha-upper
· padded
· range
# benchmark/fixtures/alpha-lower.js (29 bytes)
brace-expansion x 105,234 ops/sec ±0.65% (87 runs sampled)
expand-range x 364,206 ops/sec ±1.08% (90 runs sampled)
minimatch x 93,343 ops/sec ±1.61% (86 runs sampled)
fastest is expand-range
# benchmark/fixtures/alpha-upper.js (29 bytes)
brace-expansion x 94,729 ops/sec ±0.49% (89 runs sampled)
expand-range x 347,926 ops/sec ±1.11% (83 runs sampled)
minimatch x 89,997 ops/sec ±1.10% (87 runs sampled)
fastest is expand-range
# benchmark/fixtures/padded.js (33 bytes)
brace-expansion x 9,948 ops/sec ±0.99% (85 runs sampled)
expand-range x 209,741 ops/sec ±8.85% (83 runs sampled)
minimatch x 9,125 ops/sec ±0.95% (85 runs sampled)
fastest is expand-range
# benchmark/fixtures/range.js (29 bytes)
brace-expansion x 75,911 ops/sec ±1.63% (85 runs sampled)
expand-range x 525,728 ops/sec ±1.63% (85 runs sampled)
minimatch x 69,066 ops/sec ±0.55% (86 runs sampled)
fastest is expand-range
Changes
step
characters are no longer supported, as the same thing can be accomplished with a custom transform function.step
to… more | homepagePull requests and stars are always welcome. For bugs and feature requests, please create an issue.
Commits | Contributor |
---|---|
58 | jonschlinkert |
1 | dcohenb |
(This project's readme.md is generated by verb, please don't edit the readme directly. Any changes to the readme must be made in the .verb.md readme template.)
To generate the readme, run the following command:
$ npm install -g verbose/verb#dev verb-generate-readme && verb
Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:
$ npm install && npm test
Jon Schlinkert
Copyright © 2017, Jon Schlinkert. Released under the MIT License.
This file was generated by verb-generate-readme, v0.6.0, on May 08, 2017.
FAQs
Fast, bash-like range expansion. Expand a range of numbers or letters, uppercase or lowercase. Used by micromatch.
The npm package expand-range receives a total of 1,518,469 weekly downloads. As such, expand-range popularity was classified as popular.
We found that expand-range demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.