summaryrefslogtreecommitdiffstats
path: root/node_modules/es-abstract/2017/msFromTime.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/es-abstract/2017/msFromTime.js')
-rw-r--r--node_modules/es-abstract/2017/msFromTime.js10
1 files changed, 0 insertions, 10 deletions
diff --git a/node_modules/es-abstract/2017/msFromTime.js b/node_modules/es-abstract/2017/msFromTime.js
deleted file mode 100644
index c31eda0..0000000
--- a/node_modules/es-abstract/2017/msFromTime.js
+++ /dev/null
@@ -1,10 +0,0 @@
-'use strict';
-
-var mod = require('../helpers/mod');
-var msPerSecond = require('../helpers/timeConstants').msPerSecond;
-
-// https://ecma-international.org/ecma-262/5.1/#sec-15.9.1.10
-
-module.exports = function msFromTime(t) {
- return mod(t, msPerSecond);
-};