source: imaps-frontend/node_modules/es-abstract/2021/GetV.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: 492 bytes
RevLine 
[d565449]1'use strict';
2
3var $TypeError = require('es-errors/type');
4
5var inspect = require('object-inspect');
6
[79a0317]7var isPropertyKey = require('../helpers/isPropertyKey');
[d565449]8// var ToObject = require('./ToObject');
9
10// https://262.ecma-international.org/6.0/#sec-getv
11
12module.exports = function GetV(V, P) {
13 // 7.3.2.1
[79a0317]14 if (!isPropertyKey(P)) {
15 throw new $TypeError('Assertion failed: P is not a Property Key, got ' + inspect(P));
[d565449]16 }
17
18 // 7.3.2.2-3
19 // var O = ToObject(V);
20
21 // 7.3.2.4
22 return V[P];
23};
Note: See TracBrowser for help on using the repository browser.