UNPKG

@sprucelabs/schema

Version:

Static and dynamic binding plus runtime validation and transformation to ensure your app is sound. 🤓

9 lines (8 loc) • 222 B
export default function getStartOfDay(timestamp) { if (!timestamp) { timestamp = new Date().getTime(); } const date = new Date(timestamp); date.setUTCHours(0, 0, 0, 0); return date.getTime(); }