blob: e618d113a51dc0b33ccfdd8a0983f5dc202e1839 [file] [log] [blame]
Leo Repp58b9f112021-11-22 11:57:47 +01001"use strict";
2
3module.exports = function isObject(x) {
4 return typeof x === "object" && x !== null;
5};