UNPKG

recoder-code

Version:

🚀 AI-powered development platform - Chat with 32+ models, build projects, automate workflows. Free models included!

8 lines • 434 B
import requiredArgs from "../requiredArgs/index.js"; import startOfUTCWeek from "../startOfUTCWeek/index.js"; export default function isSameUTCWeek(dirtyDateLeft, dirtyDateRight, options) { requiredArgs(2, arguments); var dateLeftStartOfWeek = startOfUTCWeek(dirtyDateLeft, options); var dateRightStartOfWeek = startOfUTCWeek(dirtyDateRight, options); return dateLeftStartOfWeek.getTime() === dateRightStartOfWeek.getTime(); }