mirror of
https://github.com/nodejs/node.git
synced 2025-08-20 09:25:30 +02:00

PR-URL: https://github.com/nodejs/node/pull/47862 Reviewed-By: Debadree Chatterjee <debadree333@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Luke Karrys <luke@lukekarrys.com>
10 lines
No EOL
322 B
JavaScript
10 lines
No EOL
322 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.unload = exports.load = exports.onExit = void 0;
|
|
const onExit = () => () => { };
|
|
exports.onExit = onExit;
|
|
const load = () => { };
|
|
exports.load = load;
|
|
const unload = () => { };
|
|
exports.unload = unload;
|
|
//# sourceMappingURL=browser.js.map
|