replace jest with ava

This commit is contained in:
Robert Brignull 2020-05-04 18:50:13 +01:00
parent 27cc8b23fe
commit 0347b72305
11775 changed files with 84546 additions and 1440575 deletions

44
node_modules/equal-length/readme.md generated vendored Normal file
View file

@ -0,0 +1,44 @@
# equal-length [![Build Status](https://travis-ci.org/vadimdemedes/equal-length.svg?branch=master)](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)