summaryrefslogtreecommitdiff
path: root/date-fns/src/max/benchmark.js
diff options
context:
space:
mode:
Diffstat (limited to 'date-fns/src/max/benchmark.js')
-rw-r--r--date-fns/src/max/benchmark.js27
1 files changed, 27 insertions, 0 deletions
diff --git a/date-fns/src/max/benchmark.js b/date-fns/src/max/benchmark.js
new file mode 100644
index 0000000..6726268
--- /dev/null
+++ b/date-fns/src/max/benchmark.js
@@ -0,0 +1,27 @@
+// @flow
+/* eslint-env mocha */
+/* global suite, benchmark */
+
+import max from '.'
+import moment from 'moment'
+
+suite(
+ 'max',
+ function() {
+ benchmark('date-fns', function() {
+ return max([this.dateA, this.dateB])
+ })
+
+ benchmark('Moment.js', function() {
+ return moment.max(this.momentA, this.momentB)
+ })
+ },
+ {
+ setup: function() {
+ this.dateA = new Date()
+ this.momentA = moment()
+ this.dateB = new Date(this.dateA.getTime() + 604800000)
+ this.momentB = this.momentA.clone().add(7, 'days')
+ }
+ }
+)