replace jest with ava
This commit is contained in:
parent
27cc8b23fe
commit
0347b72305
11775 changed files with 84546 additions and 1440575 deletions
44
node_modules/equal-length/readme.md
generated
vendored
Normal file
44
node_modules/equal-length/readme.md
generated
vendored
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
# equal-length [](https://travis-ci.org/vadimdemedes/equal-length)
|
||||
|
||||
> Extend lines to equal length
|
||||
|
||||
|
||||
## Install
|
||||
|
||||
```
|
||||
$ npm install --save equal-length
|
||||
```
|
||||
|
||||
|
||||
## Usage
|
||||
|
||||
*.join() and .split() are used only to demo line length*
|
||||
|
||||
```js
|
||||
const equalLength = require('equal-length');
|
||||
|
||||
equalLength([
|
||||
'abc',
|
||||
'a'
|
||||
].join('\n')).split('\n');
|
||||
// => [
|
||||
// 'abc',
|
||||
// 'a '
|
||||
// ]
|
||||
```
|
||||
|
||||
|
||||
## API
|
||||
|
||||
### equalLength(input)
|
||||
|
||||
#### input
|
||||
|
||||
Type: `string`
|
||||
|
||||
Multiline string.
|
||||
|
||||
|
||||
## License
|
||||
|
||||
MIT © [Vadim Demedes](https://github.com/vadimdemedes)
|
||||
Loading…
Add table
Add a link
Reference in a new issue