:: **Zploit** v1.0 | Current Path: **/home/ev8tmzj0ufzx/public_html/node_modules/type/prototype/**
:: Editing File: is.js
"use strict"; var isObject = require("../object/is"); module.exports = function (value) { if (!isObject(value)) return false; try { if (!value.constructor) return false; return value.constructor.prototype === value; } catch (error) { return false; } };