mirror of https://github.com/nodejs/node.git
11 lines
202 B
JavaScript
11 lines
202 B
JavaScript
|
'use strict';
|
||
|
require('../common');
|
||
|
|
||
|
const { cache } = require;
|
||
|
|
||
|
Object.keys(cache).forEach((key) => {
|
||
|
delete cache[key];
|
||
|
});
|
||
|
// Require the same module again triggers the crash
|
||
|
require('../common');
|