mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
9 lines
181 B
JavaScript
9 lines
181 B
JavaScript
|
'use strict';
|
||
|
|
||
|
const oldRunMain = require('module').runMain;
|
||
|
|
||
|
require('module').runMain = function(...args) {
|
||
|
console.log('runMain is monkey patched!');
|
||
|
oldRunMain(...args);
|
||
|
};
|