UNPKG

bigmoment

Version:

Date manipulation that can track the age of the universe

5 lines (4 loc) 173 B
const partialDateRegex = new RegExp("^-?[0-9]{1,3}$"); module.exports = function isPartialDate(arg){ return typeof arg === 'string' && arg && partialDateRegex.test(arg); }