()
| 415 | |
| 416 | // an immutable object with a single mutable value |
| 417 | function createRef() { |
| 418 | var refObject = { |
| 419 | current: null |
| 420 | }; |
| 421 | |
| 422 | { |
| 423 | Object.seal(refObject); |
| 424 | } |
| 425 | |
| 426 | return refObject; |
| 427 | } |
| 428 | |
| 429 | var isArrayImpl = Array.isArray; // eslint-disable-next-line no-redeclare |
| 430 |
no outgoing calls
no test coverage detected
searching dependent graphs…