|
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:
492 bytes
|
| Rev | Line | |
|---|
| [9af201e] | 1 | 'use strict';
|
|---|
| 2 |
|
|---|
| 3 | var $TypeError = require('es-errors/type');
|
|---|
| 4 |
|
|---|
| 5 | var inspect = require('object-inspect');
|
|---|
| 6 |
|
|---|
| 7 | var isPropertyKey = require('../helpers/isPropertyKey');
|
|---|
| 8 | // var ToObject = require('./ToObject');
|
|---|
| 9 |
|
|---|
| 10 | // https://262.ecma-international.org/6.0/#sec-getv
|
|---|
| 11 |
|
|---|
| 12 | module.exports = function GetV(V, P) {
|
|---|
| 13 | // 7.3.2.1
|
|---|
| 14 | if (!isPropertyKey(P)) {
|
|---|
| 15 | throw new $TypeError('Assertion failed: P is not a Property Key, got ' + inspect(P));
|
|---|
| 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.