main
Last change
on this file since 79a0317 was 79a0317, checked in by stefan toskovski <stefantoska84@…>, 3 days ago |
F4 Finalna Verzija
|
-
Property mode
set to
100644
|
File size:
751 bytes
|
Rev | Line | |
---|
[d565449] | 1 | 'use strict';
|
---|
| 2 |
|
---|
| 3 | var $TypeError = require('es-errors/type');
|
---|
| 4 |
|
---|
| 5 | var DefinePropertyOrThrow = require('./DefinePropertyOrThrow');
|
---|
[79a0317] | 6 |
|
---|
| 7 | var isObject = require('../helpers/isObject');
|
---|
| 8 | var isPropertyKey = require('../helpers/isPropertyKey');
|
---|
[d565449] | 9 |
|
---|
| 10 | // https://262.ecma-international.org/13.0/#sec-createnonenumerabledatapropertyorthrow
|
---|
| 11 |
|
---|
| 12 | module.exports = function CreateNonEnumerableDataPropertyOrThrow(O, P, V) {
|
---|
[79a0317] | 13 | if (!isObject(O)) {
|
---|
[d565449] | 14 | throw new $TypeError('Assertion failed: Type(O) is not Object');
|
---|
| 15 | }
|
---|
| 16 |
|
---|
[79a0317] | 17 | if (!isPropertyKey(P)) {
|
---|
| 18 | throw new $TypeError('Assertion failed: P is not a Property Key');
|
---|
[d565449] | 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.