mirror of
https://github.com/cachix/install-nix-action.git
synced 2025-06-08 18:04:29 +00:00
v7
This commit is contained in:
parent
033d472283
commit
49df04613e
6774 changed files with 1602535 additions and 1 deletions
22
node_modules/jest-leak-detector/README.md
generated
vendored
Normal file
22
node_modules/jest-leak-detector/README.md
generated
vendored
Normal file
|
@ -0,0 +1,22 @@
|
|||
# jest-leak-detector
|
||||
|
||||
Module for verifying whether an object has been garbage collected or not.
|
||||
|
||||
Internally creates a weak reference to the object, and forces garbage collection to happen. If the reference is gone, it meant no one else was pointing to the object.
|
||||
|
||||
## Example
|
||||
|
||||
```javascript
|
||||
let reference = {};
|
||||
|
||||
const detector = new LeakDetector(reference);
|
||||
|
||||
// Reference is held in memory.
|
||||
console.log(detector.isLeaking()); // true
|
||||
|
||||
// We destroy the only reference to the object.
|
||||
reference = null;
|
||||
|
||||
// Reference is gone.
|
||||
console.log(detector.isLeaking()); // false
|
||||
```
|
Loading…
Add table
Add a link
Reference in a new issue