mirror of
https://github.com/nodejs/node.git
synced 2025-08-16 06:08:50 +02:00

PR-URL: https://github.com/nodejs/node/pull/29866 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Myles Borins <myles.borins@gmail.com>
10 lines
202 B
JavaScript
10 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');
|