7 lines
144 B
JavaScript
Raw Permalink Normal View History

2022-09-30 05:39:11 +00:00
'use strict';
module.exports = value => {
const type = typeof value;
return value !== null && (type === 'object' || type === 'function');
};