isobject
isobject copied to clipboard
new Date()
const isObject = require("isobject");
console.log(isObject(new Date())) // true, maybe return false?
Ref: https://developer.mozilla.org/zh-TW/docs/Web/JavaScript/Reference/Operators/typeof
Date is an object though?
I think isobject only pick key-value type data, but I found other method to satisfied, thank you for reply. :)