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

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

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