1'use strict'; 2module.exports = function (x) { 3 var type = typeof x; 4 return x !== null && (type === 'object' || type === 'function'); 5}; 6