finalize

1.0.4 • Public • Published

finalize

Node module to register a garbage collector callback for objects

Usage

var finalize = require('finalize');
 
var obj = { x: 1337 };
finalize(obj, function () {
  console.log(this.x); // this will print '1337'
});
global.gc();
// nothing will happen, var obj above holds obj alive
obj = null;
global.gc();
// the previous line should trigger the callback above

Readme

Keywords

Package Sidebar

Install

npm i finalize

Weekly Downloads

11

Version

1.0.4

License

BSD-2-Clause

Last publish

Collaborators

  • andreasgal