File tree Expand file tree Collapse file tree 1 file changed +0
-20
lines changed Expand file tree Collapse file tree 1 file changed +0
-20
lines changed Original file line number Diff line number Diff line change @@ -50,14 +50,11 @@ const {
5050 timerListMap,
5151 timerListQueue,
5252 immediateQueue,
53- active,
54- unrefActive,
5553 insert,
5654 knownTimersById,
5755} = require ( 'internal/timers' ) ;
5856const {
5957 promisify : { custom : customPromisify } ,
60- deprecate,
6158} = require ( 'internal/util' ) ;
6259let debug = require ( 'internal/util/debuglog' ) . debuglog ( 'timer' , ( fn ) => {
6360 debug = fn ;
@@ -351,23 +348,6 @@ module.exports = timers = {
351348 clearImmediate,
352349 setInterval,
353350 clearInterval,
354- _unrefActive : deprecate (
355- unrefActive ,
356- 'timers._unrefActive() is deprecated.' +
357- ' Please use timeout.refresh() instead.' ,
358- 'DEP0127' ) ,
359- active : deprecate (
360- active ,
361- 'timers.active() is deprecated. Please use timeout.refresh() instead.' ,
362- 'DEP0126' ) ,
363- unenroll : deprecate (
364- unenroll ,
365- 'timers.unenroll() is deprecated. Please use clearTimeout instead.' ,
366- 'DEP0096' ) ,
367- enroll : deprecate (
368- enroll ,
369- 'timers.enroll() is deprecated. Please use setTimeout instead.' ,
370- 'DEP0095' ) ,
371351} ;
372352
373353ObjectDefineProperties ( timers , {
You can’t perform that action at this time.
0 commit comments