404

[ Avaa Bypassed ]




Upload:

Command:

botdev@18.218.110.116: ~ $
/* eslint-disable unicorn/no-process-exit */
'use strict';
let updateNotifier = require('.');

const options = JSON.parse(process.argv[2]);

updateNotifier = new updateNotifier.UpdateNotifier(options);

updateNotifier.checkNpm().then(update => {
	// Only update the last update check time on success
	updateNotifier.config.set('lastUpdateCheck', Date.now());

	if (update.type && update.type !== 'latest') {
		updateNotifier.config.set('update', update);
	}

	// Call process exit explicitly to terminate the child process
	// Otherwise the child process will run forever, according to the Node.js docs
	process.exit();
}).catch(() => {
	process.exit(1);
});

Filemanager

Name Type Size Permission Actions
check.js File 659 B 0644
index.js File 4.51 KB 0644
license File 1.22 KB 0644
package.json File 2.14 KB 0644
readme.md File 5.71 KB 0644