Is there a way to create WeakMap of any other weak references in Javascript for storing key value pairs where key is String/Number and value is Object.
The referencing would have to work something like this:
const wMap = new WeakRefMap();
const referencer = {child: new WeakRefMap()}
wMap.set('child', temp.child);
wMap.has('child'); // true
delete referencer.child
wMap.has('child'); //false
I creating kind of a tree structure that holds track of references that are still used in the current scope.
I will do a lot of merging, and recursively cleaning up a deeply nested structure can be very inefficient for this use case.
You can solve it by using WeakRef and FinalizationRegistry.
Here is an example written in TypeScript:
It must be run with the --expose-gc option in the node.js environment.