http2.js-client
Version:
Patch http2-client to use custom http2.js (node-http2)
16 lines (15 loc) • 348 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
// tslint:disable-next-line: no-empty
const noop = () => { };
exports.noop = noop;
const noopLog = {
debug: noop,
error: noop,
fatal: noop,
info: noop,
trace: noop,
warn: noop,
child: () => noopLog
};
exports.noopLog = noopLog;