diff --git a/lib/node_modules/@stdlib/assert/has-bigint-support/lib/main.js b/lib/node_modules/@stdlib/assert/has-bigint-support/lib/main.js index 309b73a0a0ac..d77e5401e868 100644 --- a/lib/node_modules/@stdlib/assert/has-bigint-support/lib/main.js +++ b/lib/node_modules/@stdlib/assert/has-bigint-support/lib/main.js @@ -44,7 +44,7 @@ function hasBigIntSupport() { typeof Global.BigInt === 'function' && typeof BigInt === 'function' && // eslint-disable-line stdlib/require-globals typeof Global.BigInt( '1' ) === 'bigint' && - typeof BigInt( '1' ) === 'bigint' // eslint-disable-line stdlib/require-globals, no-undef + typeof BigInt( '1' ) === 'bigint' // eslint-disable-line stdlib/require-globals, no-undef, stdlib/no-builtin-big-int ); } diff --git a/lib/node_modules/@stdlib/assert/is-enumerable-property/lib/native.js b/lib/node_modules/@stdlib/assert/is-enumerable-property/lib/native.js index 143e16621ebf..5c4647426850 100644 --- a/lib/node_modules/@stdlib/assert/is-enumerable-property/lib/native.js +++ b/lib/node_modules/@stdlib/assert/is-enumerable-property/lib/native.js @@ -35,7 +35,7 @@ * 'boop': true * }; * -* var bool = isEnumerableProperty( beep, 'boop' ); +* var bool = isEnumerableProperty.call( beep, 'boop' ); * // returns true * * @example @@ -43,7 +43,7 @@ * 'boop': true * }; * -* var bool = isEnumerableProperty( beep, 'hasOwnProperty' ); +* var bool = isEnumerableProperty.call( beep, 'hasOwnProperty' ); * // returns false */ var isEnumerableProperty = Object.prototype.propertyIsEnumerable;