PATH:
usr
/
local
/
lib
/
node_modules
/
pm2
/
node_modules
/
date-fns
/
is_date
/** * @category Common Helpers * @summary Is the given argument an instance of Date? * * @description * Is the given argument an instance of Date? * * @param {*} argument - the argument to check * @returns {Boolean} the given argument is an instance of Date * * @example * // Is 'mayonnaise' a Date? * var result = isDate('mayonnaise') * //=> false */ function isDate (argument) { return argument instanceof Date } module.exports = isDate
[+]
..
[-] index.d.ts
[edit]
[-] package.json
[edit]
[-] index.js
[edit]
[-] index.js.flow
[edit]