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

/* global suite, benchmark */

import isThisMonth from '.'

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