source: frontend/node_modules/es-abstract/2020/CreateDataPropertyOrThrow.js

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

Fix frontend appearance

  • Property mode set to 100644
File size: 700 bytes
Line 
1'use strict';
2
3var $TypeError = require('es-errors/type');
4var isObject = require('es-object-atoms/isObject');
5
6var CreateDataProperty = require('./CreateDataProperty');
7
8var isPropertyKey = require('../helpers/isPropertyKey');
9
10// // https://262.ecma-international.org/6.0/#sec-createdatapropertyorthrow
11
12module.exports = function CreateDataPropertyOrThrow(O, P, V) {
13 if (!isObject(O)) {
14 throw new $TypeError('Assertion failed: Type(O) is not Object');
15 }
16 if (!isPropertyKey(P)) {
17 throw new $TypeError('Assertion failed: P is not a Property Key');
18 }
19 var success = CreateDataProperty(O, P, V);
20 if (!success) {
21 throw new $TypeError('unable to create data property');
22 }
23 return success;
24};
Note: See TracBrowser for help on using the repository browser.