WUT_Computer_Science/EGUI/lab3/api/node_modules/is-obj/index.js
2022-06-15 05:26:01 +02:00

7 lines
144 B
JavaScript

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