UNPKG

chrono-node

Version:

A natural language date parser in Javascript

12 lines 509 B
export function implySimilarDate(component, target) { component.imply("day", target.getDate()); component.imply("month", target.getMonth() + 1); component.imply("year", target.getFullYear()); } export function implySimilarTime(component, target) { component.imply("hour", target.getHours()); component.imply("minute", target.getMinutes()); component.imply("second", target.getSeconds()); component.imply("millisecond", target.getMilliseconds()); } //# sourceMappingURL=dates.js.map