mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-22 20:15:06 +08:00
19 lines
502 B
JavaScript
19 lines
502 B
JavaScript
|
|
import baseGetTag from './_baseGetTag.js';
|
||
|
|
import isObjectLike from './isObjectLike.js';
|
||
|
|
|
||
|
|
/** `Object#toString` result references. */
|
||
|
|
var dateTag = '[object Date]';
|
||
|
|
|
||
|
|
/**
|
||
|
|
* The base implementation of `_.isDate` without Node.js optimizations.
|
||
|
|
*
|
||
|
|
* @private
|
||
|
|
* @param {*} value The value to check.
|
||
|
|
* @returns {boolean} Returns `true` if `value` is a date object, else `false`.
|
||
|
|
*/
|
||
|
|
function baseIsDate(value) {
|
||
|
|
return isObjectLike(value) && baseGetTag(value) == dateTag;
|
||
|
|
}
|
||
|
|
|
||
|
|
export default baseIsDate;
|