sec

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

MIT 2 个版本
安装
npm install sec
yarn add sec
pnpm add sec
bun add 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