mirror of
https://github.com/bnmgh1/NodeSandbox.git
synced 2025-04-20 10:55:01 +08:00
6 lines
144 B
JavaScript
6 lines
144 B
JavaScript
module.exports = noop;
|
|
module.exports.HttpsAgent = noop;
|
|
|
|
// Noop function for browser since native api's don't use agents.
|
|
function noop () {}
|