How to use the timers._unrefActive function in timers

To help you get started, we’ve selected a few timers examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github apigee / trireme / node12 / node12src / src / main / javascript / io / apigee / trireme / node12 / node / net.js View on Github external
Socket.prototype._unrefTimer = function unrefTimer() {
  for (var s = this; s !== null; s = s._parent)
    timers._unrefActive(s);
};
github feross / chrome-net / index.js View on Github external
Socket.prototype._unrefTimer = function unrefTimer () {
  for (var s = this; s !== null; s = s._parent) {
    timers._unrefActive(s)
  }
}
github weolar / miniblink49 / node / lib / net.js View on Github external
Socket.prototype._unrefTimer = function _unrefTimer() {
  for (var s = this; s !== null; s = s._parent)
    timers._unrefActive(s);
};
github pmq20 / node-packer / node / lib / net.js View on Github external
Socket.prototype._unrefTimer = function _unrefTimer() {
  for (var s = this; s !== null; s = s._parent)
    timers._unrefActive(s);
};
github nodekit-io / nodekit-darwin / src / nodekit / NKCore / lib-core / node / net.js View on Github external
Socket.prototype._unrefTimer = function unrefTimer() {
  for (var s = this; s !== null; s = s._parent)
    timers._unrefActive(s);
};

timers

A tiny cron-like tools for humman.

MIT
Latest version published 10 years ago

Package Health Score

47 / 100
Full package analysis

Similar packages