blob: 4d023bc69031775089d16548c7c623f86a899de1 [file] [log] [blame]
'use strict';
module.exports = function (x) {
var type = typeof x;
return x !== null && (type === 'object' || type === 'function');
};