Socket
Socket
Sign inDemoInstall

duration-iso-8601

Package Overview
Dependencies
0
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    duration-iso-8601

Converting ISO 8601 Duration(PnYnMnDTnHnMnS syntax)


Version published
Maintainers
1
Install size
9.02 kB
Created

Readme

Source

duration-iso-8601

https://en.wikipedia.org/wiki/ISO_8601#Durations

Installation

npm install duration-iso-8601

Functions

convertDuration(String)

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

convertYouTubeDuration(String)

Input:
ISO 8601 Duration(PnYnMnDTnHnMnS syntax)

Output:
String(hh:mm:ss) of YouTube video duration syntax
Return null if the input is invalid

Example

import {convertDuration, 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

// 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

Keywords

FAQs

Last updated on 30 Aug 2017

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc