aboutsummaryrefslogtreecommitdiffstats
path: root/library/moment/benchmarks/fromDate.js
diff options
context:
space:
mode:
Diffstat (limited to 'library/moment/benchmarks/fromDate.js')
-rw-r--r--library/moment/benchmarks/fromDate.js12
1 files changed, 0 insertions, 12 deletions
diff --git a/library/moment/benchmarks/fromDate.js b/library/moment/benchmarks/fromDate.js
deleted file mode 100644
index 613061c4d..000000000
--- a/library/moment/benchmarks/fromDate.js
+++ /dev/null
@@ -1,12 +0,0 @@
-var Benchmark = require('benchmark'),
- moment = require('./../moment.js'),
- base = new Date();
-
-module.exports = {
- name: 'fromDate',
- onComplete: function(){},
- fn: function(){
- moment(base);
- },
- async: true
-};