()
| 629 | |
| 630 | // an immutable object with a single mutable value |
| 631 | function createRef() { |
| 632 | var refObject = { |
| 633 | current: null |
| 634 | }; |
| 635 | |
| 636 | { |
| 637 | Object.seal(refObject); |
| 638 | } |
| 639 | |
| 640 | return refObject; |
| 641 | } |
| 642 | |
| 643 | var hasOwnProperty$1 = Object.prototype.hasOwnProperty; |
| 644 | var RESERVED_PROPS = { |
nothing calls this directly
no outgoing calls
no test coverage detected