
Security News
TypeScript is Porting Its Compiler to Go for 10x Faster Builds
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
duration-iso-8601
Advanced tools
Converting ISO 8601 Duration(PnYnMnDTnHnMnS syntax)
https://en.wikipedia.org/wiki/ISO_8601#Durations
npm install duration-iso-8601 --save
Input:
ISO 8601 Duration(PnYnMnDTnHnMnS syntax)
Output:
Object
{ year: Number, month: Number, day: Number, hour: Number, minute: Number, second: Number }
Property value will be undefined if there is no value
Return null if the input is invalid
Input:
ISO 8601 Duration(PnYnMnDTnHnMnS syntax)
Output:
Number of second
Return null if the input is invalid
Input:
ISO 8601 Duration(PnYnMnDTnHnMnS syntax)
Output:
String(hh:mm:ss) of YouTube video duration syntax
Return null if the input is invalid
import {convertDuration, convertToSecond, convertYouTubeDuration} from 'duration-iso-8601';
// convertDuration(String)
console.log(convertDuration('P1Y2M3DT4H5M6S'));
// return { year: 1, month: 2, day: 3, hour: 4, minute: 5, second: 6 }
console.log(convertDuration('P1Y30DT15M39S'));
// return { year: 1, month: undefined, day: 30, hour: undefined, minute: 15, second: 39 }
console.log(convertDuration('ieurht834'));
// return null
// convertToSecond(String)
console.log(convertToSecond('PT56M'));
// return 3360
console.log(convertToSecond('P3MT48M55S'));
// return 7778935
console.log(convertToSecond('P87(*&(bfwefh'));
// return null
// convertYouTubeDuration(String)
console.log(convertYouTubeDuration('PT3H'));
// return '3:00:00'
console.log(convertYouTubeDuration('PT28M59S'));
// return '28:59'
console.log(convertYouTubeDuration('PT4S'));
// return '0:04'
console.log(convertYouTubeDuration('^(*&*( qh2we'));
// return null
FAQs
Converting ISO 8601 Duration(PnYnMnDTnHnMnS syntax)
The npm package duration-iso-8601 receives a total of 54 weekly downloads. As such, duration-iso-8601 popularity was classified as not popular.
We found that duration-iso-8601 demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.