(x)
| 55274 | return typeof x === "boolean"; |
| 55275 | }; |
| 55276 | var isFunction = function isFunction(x) { |
| 55277 | return typeof x === "function"; |
| 55278 | }; |
| 55279 | var isObject = function isObject(x) { |
| 55280 | return x !== null && (0, _typeofDefault.default)(x) === "object"; |
| 55281 | }; |
no outgoing calls
no test coverage detected