mirror of
https://github.com/kuhyx/WUT_Computer_Science.git
synced 2026-07-04 22:03:10 +02:00
7 lines
144 B
JavaScript
7 lines
144 B
JavaScript
'use strict';
|
|
|
|
module.exports = value => {
|
|
const type = typeof value;
|
|
return value !== null && (type === 'object' || type === 'function');
|
|
};
|