source: imaps-frontend/node_modules/es-abstract/2019/Get.js@ d565449

main
Last change on this file since d565449 was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

  • Property mode set to 100644
File size: 549 bytes
RevLine 
[d565449]1'use strict';
2
3var $TypeError = require('es-errors/type');
4
5var inspect = require('object-inspect');
6
7var IsPropertyKey = require('./IsPropertyKey');
8var Type = require('./Type');
9
10// https://262.ecma-international.org/6.0/#sec-get-o-p
11
12module.exports = function Get(O, P) {
13 // 7.3.1.1
14 if (Type(O) !== 'Object') {
15 throw new $TypeError('Assertion failed: Type(O) is not Object');
16 }
17 // 7.3.1.2
18 if (!IsPropertyKey(P)) {
19 throw new $TypeError('Assertion failed: IsPropertyKey(P) is not true, got ' + inspect(P));
20 }
21 // 7.3.1.3
22 return O[P];
23};
Note: See TracBrowser for help on using the repository browser.