Sha256: 2910d9ed04b761ddd6cd867cde3986aa90c31d6fd62ffb86a25b78f34ffaa95f
Contents?: true
Size: 974 Bytes
Versions: 243
Compression:
Stored size: 974 Bytes
Contents
'use strict'; var GetIntrinsic = require('get-intrinsic'); var $TypeError = GetIntrinsic('%TypeError%'); var DefineOwnProperty = require('../helpers/DefineOwnProperty'); var FromPropertyDescriptor = require('./FromPropertyDescriptor'); var IsDataDescriptor = require('./IsDataDescriptor'); var IsPropertyKey = require('./IsPropertyKey'); var SameValue = require('./SameValue'); var Type = require('./Type'); // https://262.ecma-international.org/6.0/#sec-createmethodproperty module.exports = function CreateMethodProperty(O, P, V) { if (Type(O) !== 'Object') { throw new $TypeError('Assertion failed: Type(O) is not Object'); } if (!IsPropertyKey(P)) { throw new $TypeError('Assertion failed: IsPropertyKey(P) is not true'); } var newDesc = { '[[Configurable]]': true, '[[Enumerable]]': false, '[[Value]]': V, '[[Writable]]': true }; return DefineOwnProperty( IsDataDescriptor, SameValue, FromPropertyDescriptor, O, P, newDesc ); };
Version data entries
243 entries across 27 versions & 2 rubygems