(val)
| 9238 | |
| 9239 | |
| 9240 | function isPrimitive(val) { |
| 9241 | return val == null || val === true || val === false || |
| 9242 | typeof val === "string" || typeof val === "number"; |
| 9243 | |
| 9244 | } |
| 9245 | |
| 9246 | function isObject(value) { |
| 9247 | return typeof value === "function" || |
no outgoing calls
no test coverage detected