aboutsummaryrefslogtreecommitdiff
path: root/node_modules/es5-ext/object/is-object.js
blob: 846ae217583ad5d2f77371e7df72272681f6b338 (plain)
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;
};