JSPM

sec

2.0.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 31353
  • Score
    100M100P100Q138937F
  • License MIT

Convert a time string to seconds: `'00:22:17'` → `1337`

Package Exports

  • sec

Readme

sec

Convert a time string to seconds: '00:22:17'1337

Install

$ npm install sec

Usage

import toSeconds from 'sec';

// hours:minutes:seconds
toSeconds('00:22:17');
//=> 1337

toSeconds('22:17');
//=> 1337

toSeconds('17');
//=> 17