summaryrefslogtreecommitdiff
path: root/date-fns/src/getDay/benchmark.js
blob: 1d3bbd56f7899e6cc6f68379e77485b1503f83ec (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 getDay from '.'
import moment from 'moment'

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

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