Gazebo_simulation-Frontend/node_modules/jest-leak-detector
Riddhi Dave f4870cd530 simulator page updates 2020-12-22 09:59:14 -05:00
..
build React files 2020-12-21 10:29:31 -05:00
node_modules simulator page updates 2020-12-22 09:59:14 -05:00
README.md React files 2020-12-21 10:29:31 -05:00
package.json simulator page updates 2020-12-22 09:59:14 -05:00

README.md

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

let reference = {};

const detector = new LeakDetector(reference);

// Reference is held in memory.
console.log(detector.isLeaked()); // true

// We destroy the only reference to the object.
reference = null;

// Reference is gone.
console.log(detector.isLeaked()); // false