node_modules/es-abstract/2019/OrdinaryHasProperty.js in immosquare-cleaner-0.1.60 vs node_modules/es-abstract/2019/OrdinaryHasProperty.js in immosquare-cleaner-0.1.61

- old
+ new

@@ -1,18 +1,18 @@ 'use strict'; var $TypeError = require('es-errors/type'); -var IsPropertyKey = require('./IsPropertyKey'); -var Type = require('./Type'); +var isObject = require('../helpers/isObject'); +var isPropertyKey = require('../helpers/isPropertyKey'); // https://262.ecma-international.org/6.0/#sec-ordinaryhasproperty module.exports = function OrdinaryHasProperty(O, P) { - if (Type(O) !== 'Object') { + if (!isObject(O)) { throw new $TypeError('Assertion failed: Type(O) is not Object'); } - if (!IsPropertyKey(P)) { + if (!isPropertyKey(P)) { throw new $TypeError('Assertion failed: P must be a Property Key'); } return P in O; };