is-object.js 193 Bytes RawBlameHistoryPermalink 1 2 3 4 5 6 7 8 9 "use strict"; var isValue = require("./is-value"); var map = { function: true, object: true }; module.exports = function (value) { return (isValue(value) && map[typeof value]) || false; };