Files
Kmake/test/es-module/test-cjs-prototype-pollution.js

13 lines
292 B
JavaScript
Raw Normal View History

2026-05-26 23:36:42 -07:00
'use strict';
const { mustNotCall, mustCall } = require('../common');
Object.defineProperties(Object.prototype, {
then: {
set: mustNotCall('set %Object.prototype%.then'),
get: mustNotCall('get %Object.prototype%.then'),
},
});
import('data:text/javascript,').then(mustCall());