Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

640678 Views

Latest files of /cody/Khushigupta8/Hotel-Management-Webpage/node_modules/debug/src

debug.js cody/Khushigupta8/Hotel-Management-Webpage/node_modules/debug/src/debug.js
123 Views
0 Comments

/**
* This is the common logic for both the Node.js and web browser
* implementations of `debug()`.
*
* Expose `debug()` as the module.
*/

browser.js cody/Khushigupta8/Hotel-Management-Webpage/node_modules/debug/src/browser.js
127 Views
0 Comments
/**
* This is the web browser implementation of `debug()`.
*
* Expose `debug()` as the module.
*/

exports = module.exports = require('./debug');
exports.log = log;
index.js cody/Khushigupta8/Hotel-Management-Webpage/node_modules/debug/src/index.js
126 Views
0 Comments
/**
* Detect Electron renderer process, which is node, but we should
* treat as a browser.
*/

if (typeof process !== 'undefined' && process.type === 'renderer') {
module.exports = require('./browser.js');
} else {
node.js cody/Khushigupta8/Hotel-Management-Webpage/node_modules/debug/src/node.js
132 Views
0 Comments
/**
* Module dependencies.
*/

var tty = require('tty');
var util = require('util');

/**
inspector-log.js cody/Khushigupta8/Hotel-Management-Webpage/node_modules/debug/src/inspector-log.js
132 Views
0 Comments
module.exports = inspectorLog;

// black hole
const nullStream = new (require('stream').Writable)();
nullStream._write = () => {};

/**
* Outputs a `console.log()` to the Node.js Inspector console *only*.