This package has been deprecated

Author message:

This package contains very few lines of code. If you want to use this functionality, just copy it over.

human-to-milliseconds

2.0.0 • Public • Published

human-to-milliseconds

npm Travis

Converts human intervals to milliseconds. This accepts durations such as "300s", "1.5h" or "2h45m". Valid time units are: "ns", "us" (or "µs"), "ms", "s", "m", "h".

Install

In Node.js through npm

$ npm install --save human-to-milliseconds

Browser: Browserify, Webpack, other bundlers

The code published to npm that gets loaded on require is in fact an ES5 transpiled version with the right shims added. This means that you can require it and use with your favorite bundler without having to adjust asset management process.

const HumanToMilliseconds = require('human-to-milliseconds')

In the Browser through <script> tag

Loading this module through a script tag will make the HumanToMilliseconds obj available in the global namespace.

<script src="https://unpkg.com/human-to-milliseconds/dist/index.min.js"></script>
<!-- OR -->
<script src="https://unpkg.com/human-to-milliseconds/dist/index.js"></script>

API

try {
  console.log(HumanToMilliseconds('1h50m'))
} catch (err) {
  console.log(err)
}

Dependencies (0)

    Dev Dependencies (3)

    Package Sidebar

    Install

    npm i human-to-milliseconds

    Weekly Downloads

    151

    Version

    2.0.0

    License

    MIT

    Unpacked Size

    35.7 kB

    Total Files

    10

    Last publish

    Collaborators

    • hacdias