| DIR:/proc/self/cwd/bright.medisavehealthcarebd.com/node_modules/type/object/ |
| Current File : //proc/self/cwd/bright.medisavehealthcarebd.com/node_modules/type/object/is.js |
"use strict";
var isValue = require("../value/is");
// prettier-ignore
var possibleTypes = { "object": true, "function": true, "undefined": true /* document.all */ };
module.exports = function (value) {
if (!isValue(value)) return false;
return hasOwnProperty.call(possibleTypes, typeof value);
};
|