mirror of
https://github.com/MrUnknownDE/UnknownBot.git
synced 2026-04-09 01:23:45 +02:00
6 lines
103 B
JavaScript
6 lines
103 B
JavaScript
'use strict';
|
|
|
|
module.exports = function isObject(x) {
|
|
return typeof x === 'object' && x !== null;
|
|
};
|