source: imaps-frontend/node_modules/es-abstract/2022/CreateDataProperty.js@ 79a0317

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: 719 bytes
RevLine 
[d565449]1'use strict';
2
3var $TypeError = require('es-errors/type');
4
[79a0317]5var isPropertyKey = require('../helpers/isPropertyKey');
[d565449]6var OrdinaryDefineOwnProperty = require('./OrdinaryDefineOwnProperty');
[79a0317]7
8var isObject = require('../helpers/isObject');
[d565449]9
10// https://262.ecma-international.org/6.0/#sec-createdataproperty
11
12module.exports = function CreateDataProperty(O, P, V) {
[79a0317]13 if (!isObject(O)) {
[d565449]14 throw new $TypeError('Assertion failed: Type(O) is not Object');
15 }
[79a0317]16 if (!isPropertyKey(P)) {
17 throw new $TypeError('Assertion failed: P is not a Property Key');
[d565449]18 }
19 var newDesc = {
20 '[[Configurable]]': true,
21 '[[Enumerable]]': true,
22 '[[Value]]': V,
23 '[[Writable]]': true
24 };
25 return OrdinaryDefineOwnProperty(O, P, newDesc);
26};
Note: See TracBrowser for help on using the repository browser.