replace jest with ava
This commit is contained in:
parent
27cc8b23fe
commit
0347b72305
11775 changed files with 84546 additions and 1440575 deletions
41
node_modules/parse-ms/readme.md
generated
vendored
Normal file
41
node_modules/parse-ms/readme.md
generated
vendored
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
# parse-ms [](https://travis-ci.org/sindresorhus/parse-ms)
|
||||
|
||||
> Parse milliseconds into an object
|
||||
|
||||
|
||||
## Install
|
||||
|
||||
```
|
||||
$ npm install parse-ms
|
||||
```
|
||||
|
||||
|
||||
## Usage
|
||||
|
||||
```js
|
||||
const parseMilliseconds = require('parse-ms');
|
||||
|
||||
parseMilliseconds(1337000001);
|
||||
/*
|
||||
{
|
||||
days: 15,
|
||||
hours: 11,
|
||||
minutes: 23,
|
||||
seconds: 20,
|
||||
milliseconds: 1,
|
||||
microseconds: 0,
|
||||
nanoseconds: 0
|
||||
}
|
||||
*/
|
||||
```
|
||||
|
||||
|
||||
## Related
|
||||
|
||||
- [to-milliseconds](https://github.com/sindresorhus/to-milliseconds) - The inverse of this module
|
||||
- [pretty-ms](https://github.com/sindresorhus/pretty-ms) - Convert milliseconds to a human readable string
|
||||
|
||||
|
||||
## License
|
||||
|
||||
MIT © [Sindre Sorhus](https://sindresorhus.com)
|
||||
Loading…
Add table
Add a link
Reference in a new issue