/
opt
/
cpanel
/
ea-nodejs16
/
lib
/
node_modules
/
npm
/
lib
/
utils
/
File Upload :
llllll
Current File: //opt/cpanel/ea-nodejs16/lib/node_modules/npm/lib/utils/pulse-till-done.js
const log = require('./log-shim.js') let pulseTimer = null const withPromise = async (promise) => { pulseStart() try { return await promise } finally { pulseStop() } } const pulseStart = () => { pulseTimer = pulseTimer || setInterval(() => { log.gauge.pulse('') }, 150) } const pulseStop = () => { clearInterval(pulseTimer) pulseTimer = null } module.exports = { withPromise, }
Copyright ©2k19 -
Hexid
|
Tex7ure