Urara-Blog/node_modules/.pnpm-store/v3/files/05/3828e5750a1241637f5bae3c79915aad38c589abee3c5a615f51450f427e7dae7da1fc9218d956562ea2e06b307d07579a89ed1138d945ab2f5318481e2a0a
2022-08-14 01:14:53 +08:00

25 lines
602 B
Text

'use strict';
var GetIntrinsic = require('get-intrinsic');
var $TypeError = GetIntrinsic('%TypeError%');
var inspect = require('object-inspect');
var IsPropertyKey = require('./IsPropertyKey');
var Type = require('./Type');
// https://ecma-international.org/ecma-262/6.0/#sec-get-o-p
module.exports = function Get(O, P) {
// 7.3.1.1
if (Type(O) !== 'Object') {
throw new $TypeError('Assertion failed: Type(O) is not Object');
}
// 7.3.1.2
if (!IsPropertyKey(P)) {
throw new $TypeError('Assertion failed: IsPropertyKey(P) is not true, got ' + inspect(P));
}
// 7.3.1.3
return O[P];
};