1.0.0 • Published 4 years ago

is-am-pm v1.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
4 years ago

is-am-pm

Build Status

Check whether it's a.m. or p.m. in local time. When given a number n, it is assumed that 0 <= n <= 23, which is the hour of the day on a 24-hour clock. Behavior is undefined for values of n outside that range.

Compatible with Node.js 8 or higher.

Usage

import { isAM, isPM } from 'is-am-pm';

isAM(new Date('1995-12-17T03:24:00')); // true
isPM(20); // true
isPM(8); // false

License

MIT