mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2025-12-24 14:31:52 +01:00
7 lines
144 B
JavaScript
Vendored
7 lines
144 B
JavaScript
Vendored
'use strict';
|
|
|
|
module.exports = value => {
|
|
const type = typeof value;
|
|
return value !== null && (type === 'object' || type === 'function');
|
|
};
|