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:
562 bytes
|
Rev | Line | |
---|
[d565449] | 1 | 'use strict';
|
---|
| 2 |
|
---|
| 3 | var $TypeError = require('es-errors/type');
|
---|
| 4 |
|
---|
| 5 | var inspect = require('object-inspect');
|
---|
| 6 |
|
---|
[79a0317] | 7 | var isObject = require('../helpers/isObject');
|
---|
| 8 | var isPropertyKey = require('../helpers/isPropertyKey');
|
---|
[d565449] | 9 |
|
---|
| 10 | // https://262.ecma-international.org/6.0/#sec-get-o-p
|
---|
| 11 |
|
---|
| 12 | module.exports = function Get(O, P) {
|
---|
| 13 | // 7.3.1.1
|
---|
[79a0317] | 14 | if (!isObject(O)) {
|
---|
[d565449] | 15 | throw new $TypeError('Assertion failed: Type(O) is not Object');
|
---|
| 16 | }
|
---|
| 17 | // 7.3.1.2
|
---|
[79a0317] | 18 | if (!isPropertyKey(P)) {
|
---|
| 19 | throw new $TypeError('Assertion failed: P is not a Property Key, got ' + inspect(P));
|
---|
[d565449] | 20 | }
|
---|
| 21 | // 7.3.1.3
|
---|
| 22 | return O[P];
|
---|
| 23 | };
|
---|
Note:
See
TracBrowser
for help on using the repository browser.