summaryrefslogtreecommitdiff
path: root/date-fns/src/getTime/benchmark.js
blob: 8a65fd95b673daaab28772111cdef9e5ea7807b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// @flow
/* eslint-env mocha */
/* global suite, benchmark */

import getTime from '.'
import moment from 'moment'

suite('getTime', function () {
  benchmark('date-fns', function () {
    return getTime(this.date)
  })

  benchmark('Moment.js', function () {
    return this.moment.valueOf()
  })
}, {
  setup: function () {
    this.date = new Date()
    this.moment = moment()
  }
})