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

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

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