UNPKG

@yookue/ts-lang-utils

Version:

Common lang utilities for typescript

8 lines 247 B
import { parse } from '@imranbarbhuiya/duration'; export function parseToMonths(duration) { if (!duration) { return undefined; } var result = parse(duration); return result === undefined ? undefined : result / (1000 * 31556952 / 12); }