RockPaperScissors/node_modules/is-obj/index.js
2021-11-30 22:03:51 +01:00

6 lines
144 B
JavaScript

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