source: frontend/node_modules/es-abstract/2025/CreateNonEnumerableDataPropertyOrThrow.js

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 13 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 756 bytes
RevLine 
[9af201e]1'use strict';
2
3var $TypeError = require('es-errors/type');
4var isObject = require('es-object-atoms/isObject');
5
6var DefinePropertyOrThrow = require('./DefinePropertyOrThrow');
7
8var isPropertyKey = require('../helpers/isPropertyKey');
9
10// https://262.ecma-international.org/13.0/#sec-createnonenumerabledatapropertyorthrow
11
12module.exports = function CreateNonEnumerableDataPropertyOrThrow(O, P, V) {
13 if (!isObject(O)) {
14 throw new $TypeError('Assertion failed: Type(O) is not Object');
15 }
16
17 if (!isPropertyKey(P)) {
18 throw new $TypeError('Assertion failed: P is not a Property Key');
19 }
20
21 var newDesc = {
22 '[[Configurable]]': true,
23 '[[Enumerable]]': false,
24 '[[Value]]': V,
25 '[[Writable]]': true
26 };
27 return DefinePropertyOrThrow(O, P, newDesc);
28};
Note: See TracBrowser for help on using the repository browser.