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:
695 bytes
|
Rev | Line | |
---|
[d565449] | 1 | 'use strict';
|
---|
| 2 |
|
---|
| 3 | var $TypeError = require('es-errors/type');
|
---|
| 4 |
|
---|
| 5 | var CreateDataProperty = require('./CreateDataProperty');
|
---|
[79a0317] | 6 |
|
---|
| 7 | var isObject = require('../helpers/isObject');
|
---|
| 8 | var isPropertyKey = require('../helpers/isPropertyKey');
|
---|
[d565449] | 9 |
|
---|
| 10 | // // https://262.ecma-international.org/6.0/#sec-createdatapropertyorthrow
|
---|
| 11 |
|
---|
| 12 | module.exports = function CreateDataPropertyOrThrow(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 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.