summaryrefslogtreecommitdiff
path: root/deps/node/deps/npm/node_modules/is-obj/index.js
blob: 4d023bc69031775089d16548c7c623f86a899de1 (plain)
1
2
3
4
5
'use strict';
module.exports = function (x) {
	var type = typeof x;
	return x !== null && (type === 'object' || type === 'function');
};