aboutsummaryrefslogtreecommitdiff
path: root/node_modules/moment/src/lib/utils/is-leap-year.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/moment/src/lib/utils/is-leap-year.js')
-rw-r--r--node_modules/moment/src/lib/utils/is-leap-year.js3
1 files changed, 0 insertions, 3 deletions
diff --git a/node_modules/moment/src/lib/utils/is-leap-year.js b/node_modules/moment/src/lib/utils/is-leap-year.js
deleted file mode 100644
index e399d93..0000000
--- a/node_modules/moment/src/lib/utils/is-leap-year.js
+++ /dev/null
@@ -1,3 +0,0 @@
-export function isLeapYear(year) {
- return (year % 4 === 0 && year % 100 !== 0) || year % 400 === 0;
-}