https://github.com/doesdev/pico-ms
Incy wincy millisecond converter for days, hours, minutes, or seconds
https://github.com/doesdev/pico-ms
Last synced: about 1 month ago
JSON representation
Incy wincy millisecond converter for days, hours, minutes, or seconds
- Host: GitHub
- URL: https://github.com/doesdev/pico-ms
- Owner: doesdev
- License: mit
- Created: 2017-08-05T01:47:03.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2023-01-19T00:53:10.000Z (about 3 years ago)
- Last Synced: 2025-02-20T14:04:01.200Z (11 months ago)
- Language: JavaScript
- Homepage:
- Size: 27.3 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# pico-ms [](https://npmjs.org/package/pico-ms) [](https://github.com/feross/standard) [](https://dependencyci.com/github/doesdev/pico-ms)
> Incy wincy millisecond converter for days, hours, minutes, or seconds
## Install
```sh
$ npm install --save pico-ms
```
## Usage
```js
const picoMs = require('pico-ms')
picoMs('3600s') // 3600000
picoMs('3600 sec') // 3600000
picoMs('3600 seconds') // 3600000
picoMs('60m') // 3600000
picoMs('60 mins') // 3600000
picoMs('60 minutes') // 3600000
picoMs('1h') // 3600000
picoMs('1hr') // 3600000
picoMs('1 hour') // 3600000
picoMs(`${1 / 24} days`) // 3600000
picoMs(3600000) // 3600000
picoMs('3600000') // 3600000
```
## API
#### Takes human readable days, hour, minute, or second string and returns milliseconds
#### `const picoMs = require('pico-ms')(*hms|ms)`
- **hms|ms** *[string|integer - required]* (ex. `'3600s'`, `'60 minutes'`, `'1 hr'`, `3600000`)
## License
MIT © [Andrew Carpenter](https://github.com/doesdev)