mirror of
https://github.com/nodejs/node.git
synced 2025-05-07 23:52:40 +00:00

fixup: add support for `Object.create(null)` fixup: extend to any 1-argument Object.create call fixup: add tests PR-URL: https://github.com/nodejs/node/pull/46083 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Geoffrey Booth <webadmin@geoffreybooth.com> Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Jacob Smith <jacob@frende.me> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
44 lines
1.4 KiB
JavaScript
44 lines
1.4 KiB
JavaScript
'use strict';
|
|
|
|
const { kImplicitAssertType } = require('internal/modules/esm/assert');
|
|
const {
|
|
SafeMap,
|
|
} = primordials;
|
|
let debug = require('internal/util/debuglog').debuglog('esm', (fn) => {
|
|
debug = fn;
|
|
});
|
|
const { ERR_INVALID_ARG_TYPE } = require('internal/errors').codes;
|
|
const { validateString } = require('internal/validators');
|
|
|
|
// Tracks the state of the loader-level module cache
|
|
class ModuleMap extends SafeMap {
|
|
constructor(i) { super(i); } // eslint-disable-line no-useless-constructor
|
|
get(url, type = kImplicitAssertType) {
|
|
validateString(url, 'url');
|
|
validateString(type, 'type');
|
|
return super.get(url)?.[type];
|
|
}
|
|
set(url, type = kImplicitAssertType, job) {
|
|
validateString(url, 'url');
|
|
validateString(type, 'type');
|
|
|
|
const ModuleJob = require('internal/modules/esm/module_job');
|
|
if (job instanceof ModuleJob !== true &&
|
|
typeof job !== 'function') {
|
|
throw new ERR_INVALID_ARG_TYPE('job', 'ModuleJob', job);
|
|
}
|
|
debug(`Storing ${url} (${
|
|
type === kImplicitAssertType ? 'implicit type' : type
|
|
}) in ModuleMap`);
|
|
const cachedJobsForUrl = super.get(url) ?? { __proto__: null };
|
|
cachedJobsForUrl[type] = job;
|
|
return super.set(url, cachedJobsForUrl);
|
|
}
|
|
has(url, type = kImplicitAssertType) {
|
|
validateString(url, 'url');
|
|
validateString(type, 'type');
|
|
return super.get(url)?.[type] !== undefined;
|
|
}
|
|
}
|
|
module.exports = ModuleMap;
|