|
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:
532 bytes
|
| Rev | Line | |
|---|
| [9af201e] | 1 | 'use strict';
|
|---|
| 2 |
|
|---|
| 3 | var $TypeError = require('es-errors/type');
|
|---|
| 4 |
|
|---|
| 5 | var hasOwn = require('hasown');
|
|---|
| 6 | var isObject = require('es-object-atoms/isObject');
|
|---|
| 7 |
|
|---|
| 8 | var isPropertyKey = require('../helpers/isPropertyKey');
|
|---|
| 9 |
|
|---|
| 10 | // https://262.ecma-international.org/6.0/#sec-hasownproperty
|
|---|
| 11 |
|
|---|
| 12 | module.exports = function HasOwnProperty(O, P) {
|
|---|
| 13 | if (!isObject(O)) {
|
|---|
| 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.