* Check if value is primitive
(value)
| 78 | * Check if value is primitive |
| 79 | */ |
| 80 | function isPrimitive (value) { |
| 81 | return typeof value === 'string' || typeof value === 'number' |
| 82 | } |
| 83 | |
| 84 | /** |
| 85 | * Create a cached version of a pure function. |
no outgoing calls
no test coverage detected