summaryrefslogtreecommitdiff
path: root/date-fns/examples/webpack-4.x/constants.js
blob: 832c131eceb4b1b7a25d5d8a3b8564e3e6488309 (plain)
1
2
3
4
5
6
7
8
9
import { maxTime as rootMaxTime, minTime as rootMinTime } from 'date-fns'
import { minTime } from 'date-fns/constants'
import { minTime as fpMinTime } from 'date-fns/fp'

console.log(
  rootMaxTime === 8640000000000000 &&
    rootMinTime === minTime &&
    minTime === fpMinTime
)