UNPKG

date-fns-tz

Version:

Time zone support for date-fns v3 with the Intl API

9 lines (8 loc) 271 B
export function convertToFP(fn, arity, curriedArgs = []) { if (curriedArgs.length >= arity) { return fn(...curriedArgs.slice(0, arity).reverse()); } return function (...args) { return convertToFP(fn, arity, curriedArgs.concat(args)); }; }