summaryrefslogtreecommitdiff
path: root/tools/eslint/node_modules/es5-ext/object/is-object.js
blob: 974689df782dea2a2905fc2899273d62417f8d96 (plain)
1
2
3
4
5
6
7
'use strict';

var map = { 'function': true, object: true };

module.exports = function (x) {
	return ((x != null) && map[typeof x]) || false;
};