source: imaps-frontend/node_modules/es-abstract/2022/HasOwnProperty.js

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

Update repo after prototype presentation

  • Property mode set to 100644
File size: 509 bytes
RevLine 
[d565449]1'use strict';
2
3var $TypeError = require('es-errors/type');
4
5var hasOwn = require('hasown');
6
7var IsPropertyKey = require('./IsPropertyKey');
8var Type = require('./Type');
9
10// https://262.ecma-international.org/6.0/#sec-hasownproperty
11
12module.exports = function HasOwnProperty(O, P) {
13 if (Type(O) !== 'Object') {
14 throw new $TypeError('Assertion failed: `O` must be an Object');
15 }
16 if (!IsPropertyKey(P)) {
17 throw new $TypeError('Assertion failed: `P` must be a Property Key');
18 }
19 return hasOwn(O, P);
20};
Note: See TracBrowser for help on using the repository browser.