芝麻web文件管理V1.00
编辑当前文件:/home/rejoandoctor/public_html/node_modules/ext/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); };