mirror of https://github.com/nodejs/node.git
13 lines
231 B
JavaScript
13 lines
231 B
JavaScript
|
'use strict';
|
||
|
|
||
|
const binding = require('./build/Release/binding');
|
||
|
|
||
|
// Create an AsyncWrap object.
|
||
|
const timer = setTimeout(function() {}, 1);
|
||
|
timer.unref();
|
||
|
|
||
|
// Stress-test the heap profiler.
|
||
|
binding.test();
|
||
|
|
||
|
clearTimeout(timer);
|