UNPKG

@daysnap/utils

Version:
9 lines (5 loc) 225 B
"use strict";Object.defineProperty(exports, "__esModule", {value: true});// src/isLeapYear.ts function isLeapYear(year) { return year % 400 === 0 || year % 100 !== 0 && year % 4 === 0; } exports.isLeapYear = isLeapYear;