* Check if value is primitive.
(value)
| 35 | * Check if value is primitive. |
| 36 | */ |
| 37 | function isPrimitive (value) { |
| 38 | return ( |
| 39 | typeof value === 'string' || |
| 40 | typeof value === 'number' || |
| 41 | // $flow-disable-line |
| 42 | typeof value === 'symbol' || |
| 43 | typeof value === 'boolean' |
| 44 | ) |
| 45 | } |
| 46 | |
| 47 | /** |
| 48 | * Quick object check - this is primarily used to tell |
no outgoing calls
no test coverage detected