UNPKG

@zkochan/pnpm

Version:

A fast implementation of npm install

15 lines (12 loc) 314 B
var timers = require('timers'); var obj = { _onTimeout: function() { console.log('Timer ran for: ' + (new Date().getTime() - obj.now) + ' ms'); }, start: function() { console.log('Timer should run for 100 ms'); this.now = new Date().getTime(); timers.enroll(this, 100); } }; obj.start();