aboutsummaryrefslogtreecommitdiffstats
path: root/library/moment/src/lib/utils/abs-floor.js
diff options
context:
space:
mode:
Diffstat (limited to 'library/moment/src/lib/utils/abs-floor.js')
-rw-r--r--library/moment/src/lib/utils/abs-floor.js7
1 files changed, 0 insertions, 7 deletions
diff --git a/library/moment/src/lib/utils/abs-floor.js b/library/moment/src/lib/utils/abs-floor.js
deleted file mode 100644
index 8ba131831..000000000
--- a/library/moment/src/lib/utils/abs-floor.js
+++ /dev/null
@@ -1,7 +0,0 @@
-export default function absFloor (number) {
- if (number < 0) {
- return Math.ceil(number);
- } else {
- return Math.floor(number);
- }
-}