Permalink
Cannot retrieve contributors at this time
55 lines (44 sloc)
1.55 KB
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
codeql-action/node_modules/es-abstract/helpers/DefineOwnProperty.js
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
var hasPropertyDescriptors = require('has-property-descriptors'); | |
var GetIntrinsic = require('get-intrinsic'); | |
var $defineProperty = hasPropertyDescriptors() && GetIntrinsic('%Object.defineProperty%', true); | |
var hasArrayLengthDefineBug = hasPropertyDescriptors.hasArrayLengthDefineBug(); | |
// eslint-disable-next-line global-require | |
var isArray = hasArrayLengthDefineBug && require('../helpers/IsArray'); | |
var callBound = require('call-bind/callBound'); | |
var $isEnumerable = callBound('Object.prototype.propertyIsEnumerable'); | |
// eslint-disable-next-line max-params | |
module.exports = function DefineOwnProperty(IsDataDescriptor, SameValue, FromPropertyDescriptor, O, P, desc) { | |
if (!$defineProperty) { | |
if (!IsDataDescriptor(desc)) { | |
// ES3 does not support getters/setters | |
return false; | |
} | |
if (!desc['[[Configurable]]'] || !desc['[[Writable]]']) { | |
return false; | |
} | |
// fallback for ES3 | |
if (P in O && $isEnumerable(O, P) !== !!desc['[[Enumerable]]']) { | |
// a non-enumerable existing property | |
return false; | |
} | |
// property does not exist at all, or exists but is enumerable | |
var V = desc['[[Value]]']; | |
// eslint-disable-next-line no-param-reassign | |
O[P] = V; // will use [[Define]] | |
return SameValue(O[P], V); | |
} | |
if ( | |
hasArrayLengthDefineBug | |
&& P === 'length' | |
&& '[[Value]]' in desc | |
&& isArray(O) | |
&& O.length !== desc['[[Value]]'] | |
) { | |
// eslint-disable-next-line no-param-reassign | |
O.length = desc['[[Value]]']; | |
return O.length === desc['[[Value]]']; | |
} | |
$defineProperty(O, P, FromPropertyDescriptor(desc)); | |
return true; | |
}; |