Files
actual/node_modules/is-obj/index.js
Rich In SQL 28d4ee94dd Init
2022-10-16 20:28:33 +01:00

6 lines
137 B
JavaScript

'use strict';
module.exports = function (x) {
var type = typeof x;
return x !== null && (type === 'object' || type === 'function');
};