Files
Kmake/test/es-module/test-esm-prototype-pollution.mjs
2026-05-26 23:36:42 -07:00

11 lines
282 B
JavaScript

import { mustNotCall, mustCall } from '../common/index.mjs';
Object.defineProperties(Object.prototype, {
then: {
set: mustNotCall('set %Object.prototype%.then'),
get: mustNotCall('get %Object.prototype%.then'),
},
});
import('data:text/javascript,').then(mustCall());