Skip to content

luludotdev/timeparser

Repository files navigation

⏰ Timeparser

Node.js CI NPM version NPM downloads Dependencies

Parse complex length strings to a millisecond value

💾 Installation

The package is on the NPM registry as @lolpants/timeparser. Simply install it with your NPM client of choice.

🔧 Usage

import { parse } from 'timeparser'

// Parse
const len = parse('1 minute')
// => 60000

Check /test/parse.test.ts for examples of parsable strings.