* Check if value is primitive
(value)
| 72 | * Check if value is primitive |
| 73 | */ |
| 74 | function isPrimitive (value) { |
| 75 | return typeof value === 'string' || typeof value === 'number' |
| 76 | } |
| 77 | |
| 78 | /** |
| 79 | * Create a cached version of a pure function. |
no outgoing calls
no test coverage detected