expand-range

WebJar for expand-range

Лицензия

Лицензия

MIT
Группа

Группа

org.webjars.npm
Идентификатор

Идентификатор

expand-range
Последняя версия

Последняя версия

1.8.2
Дата

Дата

Тип

Тип

jar
Описание

Описание

expand-range
WebJar for expand-range
Ссылка на сайт

Ссылка на сайт

http://webjars.org
Система контроля версий

Система контроля версий

https://github.com/jonschlinkert/expand-range

Скачать expand-range

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/org.webjars.npm/expand-range/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>expand-range</artifactId>
    <version>1.8.2</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/expand-range/
implementation 'org.webjars.npm:expand-range:1.8.2'
// https://jarcasting.com/artifacts/org.webjars.npm/expand-range/
implementation ("org.webjars.npm:expand-range:1.8.2")
'org.webjars.npm:expand-range:jar:1.8.2'
<dependency org="org.webjars.npm" name="expand-range" rev="1.8.2">
  <artifact name="expand-range" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='expand-range', version='1.8.2')
)
libraryDependencies += "org.webjars.npm" % "expand-range" % "1.8.2"
[org.webjars.npm/expand-range "1.8.2"]

Зависимости

compile (1)

Идентификатор библиотеки Тип Версия
org.webjars.npm : fill-range jar [2.1.0,3)

Модули Проекта

Данный проект не имеет модулей.

expand-range NPM version NPM monthly downloads NPM total downloads Linux Build Status

Fast, bash-like range expansion. Expand a range of numbers or letters, uppercase or lowercase. Used by micromatch.

Please consider following this project's author, Jon Schlinkert, and consider starring the project to show your ❤️ and support.

Install

Install with npm:

$ npm install --save expand-range

Example usage

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 with
  • end: the number or letter to end with
  • step: (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' ]

Custom function

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']

Benchmarks

[object Object]

History

v2.0.0

Changes

  • Special step characters are no longer supported, as the same thing can be accomplished with a custom transform function.
  • The signature in the transform function has changed. See fill-range for more details.

About

Contributing

Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.

Running Tests

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
Building docs

(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

Related projects

You might also be interested in these projects:

  • braces: Bash-like brace expansion, implemented in JavaScript. Safer than other brace expansion libs, with complete support… more | homepage
  • fill-range: Fill in a range of numbers or letters, optionally passing an increment or step to… more | homepage
  • micromatch: Glob matching for javascript/node.js. A drop-in replacement and faster alternative to minimatch and multimatch. | homepage

Contributors

Commits Contributor
65 jonschlinkert
1 dcohenb
1 stevelacy

Author

Jon Schlinkert

License

Copyright © 2018, Jon Schlinkert. Released under the MIT License.


This file was generated by verb-generate-readme, v0.8.0, on November 26, 2018.

Версии библиотеки

Версия
1.8.2
1.8.1
0.1.1