0a5ab058a6
- Angular 12 application with PrimeNG components - 5 existing Cypress e2e test suites - SCSS styling with BEM naming convention - i18n support (10 languages) - Leaflet map integration - Complete component hierarchy and routing structure This baseline will be used for Angular → React migration.
34 lines
533 B
JavaScript
34 lines
533 B
JavaScript
'use strict';
|
|
|
|
var result = require('./')();
|
|
|
|
var test = {
|
|
__proto__: null,
|
|
foo: {}
|
|
};
|
|
|
|
var setter = require('dunder-proto/set');
|
|
|
|
/** @type {import('./mutator')} */
|
|
module.exports = function hasMutator() {
|
|
if (!result) {
|
|
return false;
|
|
}
|
|
|
|
var obj = { __proto__: test };
|
|
// @ts-expect-error: TS errors on an inherited property for some reason
|
|
if (obj.foo !== test.foo) {
|
|
return false;
|
|
}
|
|
|
|
if (!setter) {
|
|
return false;
|
|
}
|
|
|
|
setter(obj, null);
|
|
if ('foo' in obj || 'toString' in obj) {
|
|
return false;
|
|
}
|
|
return true;
|
|
};
|