aboutsummaryrefslogtreecommitdiff
path: root/node_modules/is-object/index.js
blob: 1c971528b4cd3e7c51d41945ea0afc5f736f1b6a (plain)
1
2
3
4
5
'use strict';

module.exports = function isObject(x) {
	return typeof x === 'object' && x !== null;
};