* Realm-safe check for object type. Uses `typeof` instead of `instanceof Object` * which fails across realms. Returns true for any non-null value where * `typeof` is `'object'`, including plain objects, arrays, dates, maps, sets, * regex, and boxed primitives (e.g. `new String()`). Returns
(value)
| 189 | * @returns {Boolean} Returns true if the value is a non-null object type. |
| 190 | */ |
| 191 | static isObject(value) { |
| 192 | return typeof value === 'object' && value !== null; |
| 193 | } |
| 194 | |
| 195 | /** |
| 196 | * Creates an object with all permutations of the original keys. |
no outgoing calls
no test coverage detected