summaryrefslogtreecommitdiff
path: root/date-fns/src/parse/benchmark.js
diff options
context:
space:
mode:
Diffstat (limited to 'date-fns/src/parse/benchmark.js')
-rw-r--r--date-fns/src/parse/benchmark.js20
1 files changed, 20 insertions, 0 deletions
diff --git a/date-fns/src/parse/benchmark.js b/date-fns/src/parse/benchmark.js
new file mode 100644
index 0000000..2b816d7
--- /dev/null
+++ b/date-fns/src/parse/benchmark.js
@@ -0,0 +1,20 @@
+// @flow
+/* eslint-env mocha */
+/* global suite, benchmark */
+
+import parse from '.'
+import moment from 'moment'
+
+suite('parse', function () {
+ benchmark('date-fns', function () {
+ return parse('Tuesday, January 10th 2017, 11:07:40 am', 'dddd, MMMM Do YYYY, h:mm:ss a', this.date)
+ })
+
+ benchmark('Moment.js', function () {
+ return moment('Tuesday, January 10th 2017, 11:07:40 am', 'dddd, MMMM Do YYYY, h:mm:ss a')
+ })
+}, {
+ setup: function () {
+ this.date = new Date()
+ }
+})