UNPKG

xero-hero

Version:

Heroic utilities to simplify and enable your progress with the [xero-node](https://www.npmjs.com/package/xero-node) SDK.

11 lines 322 B
// src/common/where/generators.ts var dateInWhereFormat = (date) => { if (date) { return `DateTime(${date.getFullYear()}, ${date.getMonth() + 1}, ${date.getDate()})`; } throw new Error("You must pass in a valid JavaScript Date object."); }; export { dateInWhereFormat }; //# sourceMappingURL=generators.mjs.map