You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1 yıl önce
1234
  1. export default function isObject(value) {
  2. let type = typeof value
  3. return !!value && (type == 'object' || type == 'function')
  4. }