function HeapDiff() { [native code] }
...
v0.2.2 -
* don't crash when a user accidentally allocates a HeapDiff without new (ala new require('memwatch').HeapDiff()) #30
v0.2.1 -
* 0.10.0 support (thanks @rvagg and @tmuellerleile)
* improved windows build support (no longer requires sed in path, thanks @mscdex)
* work around a windows specific crash due to upstream "bug" in libuv (https://github.com/joyent/libuv/pull/629)
v0.2.0 -
...
function gc() { [native code] }
...
should.exist(memwatch.on);
should.exist(memwatch.once);
should.exist(memwatch.removeAllListeners);
should.exist(memwatch.HeapDiff);
done();
});
});
describe('calling .gc()', function() {
it('should cause a stats() event to be emitted', function(done) {
memwatch.once('stats', function(s) {
s.should.be.object;
done();
});
memwatch.gc();
});
...
function HeapDiff() { [native code] }
...
v0.2.2 -
* don't crash when a user accidentally allocates a HeapDiff without new (ala new require('memwatch').HeapDiff()) #30
v0.2.1 -
* 0.10.0 support (thanks @rvagg and @tmuellerleile)
* improved windows build support (no longer requires sed in path, thanks @mscdex)
* work around a windows specific crash due to upstream "bug" in libuv (https://github.com/joyent/libuv/pull/629)
v0.2.0 -
...
function end() { [native code] }
...
v0.2.1 -
* 0.10.0 support (thanks @rvagg and @tmuellerleile)
* improved windows build support (no longer requires sed in path, thanks @mscdex)
* work around a windows specific crash due to upstream "bug" in libuv (https://github.com/joyent/libuv/pull/629)
v0.2.0 -
* fix memory leak of snapshots in HeapDiff #15
* HeapDiff.end() throws an exception if invoked more than once.
* aggressively clean up snapshots, at end() rather than next gc
v0.1.5 -
* compiles on windows (thanks @jmatthewsr-ms! sorry to make you wait)
v0.1.4 -
* migrate to node-gyp (thanks @jhaynie for getting it started)
...