1.1.1 • Published 5 years ago

@strong-roots-capital/is-latest-closed-session v1.1.1

Weekly downloads
1
License
ISC
Repository
github
Last release
5 years ago

is-latest-closed-session Build status npm version codecov

Test to determine if a date falls inside the most-recently closed session

Install

npm install @strong-roots-capital/is-latest-closed-session

Use

import isLatestClosedSession from '@strong-roots-capital/is-latest-closed-session'

isLatestClosedSession(new Date(0), '4H')
//=> false

isLatestClosedSession(new Date(0), '1', new Date(61 * 1000))
//=> true

isLatestClosedSession(new Date(0), 240)
//=>false

isLatestClosedSession(1571871598069, '1')
//=> true

Related