New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

f4t

Package Overview
Dependencies
Maintainers
0
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

f4t

A package for formatting times.

1.1.0
latest
Source
npm
Version published
Weekly downloads
4
100%
Maintainers
0
Weekly downloads
 
Created
Source

f4t

A package for formatting times.

Usage

w = weeks, d = days, h = hours, m = minutes, s = seconds, ms = milli seconds

const { decode, encode } = require('f4t');

console.log(decode('2w3d18h40m3s2ms')); // 153960003002
console.log(encode(1536003002)); // '2w3d18h40m3s2ms'
console.log(decode('abc')); // NaN
console.log(encode(-1000)); // NaN
console.log(decode('0ms')); // 0
console.log(encode(0)); // '0ms'

// encode(milliseconds, formatOption);
// The usage of time symbols is restricted by formatOption (The use of 'ms' cannot be restricted).
console.log(encode(1536003002, ['w'])); // '17d18h40m3s2ms'
console.log(encode(1536003002, ['w', 's'])); // '17d18h40m3002ms'

Get Support

Discord Banner

Keywords

time

FAQs

Package last updated on 23 Aug 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts