0.1.3 • Published 7 years ago

hsimp-period v0.1.3

Weekly downloads
13
License
MIT
Repository
github
Last release
7 years ago

How Secure Is My Password

Periods

var period = require("period");

console.log(period(3600).getLength()); // 1
console.log(period(3600).getSingular()); // "hour"
console.log(period(3600).getPlural()); // "hours"

console.log(period(24, "hour").getLength()); // 1
console.log(period(24, "hour").getSingular()); // "day"

console.log(period(7, "day").getLength()); // 1
console.log(period(7, "day").getPlural()); // "weeks"