summaryrefslogtreecommitdiff
path: root/date-fns/src/endOfISOWeekYear/benchmark.js
blob: 89749ac500581f121db0ddf4457d287eeb792ae9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// @flow
/* eslint-env mocha */
/* global suite, benchmark */

import endOfISOWeekYear from '.'

suite('endOfISOWeekYear', function () {
  benchmark('date-fns', function () {
    return endOfISOWeekYear(this.date)
  })
}, {
  setup: function () {
    this.date = new Date()
  }
})