aboutsummaryrefslogtreecommitdiff
path: root/date-fns/src/parse/benchmark.js
blob: 2b816d765dcafa7ccd4218bbeb9265686391adfc (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 parse from '.'
import moment from 'moment'

suite('parse', function () {
  benchmark('date-fns', function () {
    return parse('Tuesday, January 10th 2017, 11:07:40 am', 'dddd, MMMM Do YYYY, h:mm:ss a', this.date)
  })

  benchmark('Moment.js', function () {
    return moment('Tuesday, January 10th 2017, 11:07:40 am', 'dddd, MMMM Do YYYY, h:mm:ss a')
  })
}, {
  setup: function () {
    this.date = new Date()
  }
})