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

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

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