UNPKG

@yookue/ts-lang-utils

Version:

Common lang utilities for typescript

8 lines 244 B
import { parse } from '@imranbarbhuiya/duration'; export function parseToDays(duration) { if (!duration) { return undefined; } var result = parse(duration); return result === undefined ? undefined : result / (1000 * 60 * 60 * 24); }