File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
lib/node_modules/@stdlib/assert
is-enumerable-property/lib Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ function hasBigIntSupport() {
4444 typeof Global . BigInt === 'function' &&
4545 typeof BigInt === 'function' && // eslint-disable-line stdlib/require-globals
4646 typeof Global . BigInt ( '1' ) === 'bigint' &&
47- typeof BigInt ( '1' ) === 'bigint' // eslint-disable-line stdlib/require-globals, no-undef
47+ typeof BigInt ( '1' ) === 'bigint' // eslint-disable-line stdlib/require-globals, no-undef, stdlib/no-builtin-big-int
4848 ) ;
4949}
5050
Original file line number Diff line number Diff line change 3535* 'boop': true
3636* };
3737*
38- * var bool = isEnumerableProperty( beep, 'boop' );
38+ * var bool = isEnumerableProperty.call ( beep, 'boop' );
3939* // returns true
4040*
4141* @example
4242* var beep = {
4343* 'boop': true
4444* };
4545*
46- * var bool = isEnumerableProperty( beep, 'hasOwnProperty' );
46+ * var bool = isEnumerableProperty.call ( beep, 'hasOwnProperty' );
4747* // returns false
4848*/
4949var isEnumerableProperty = Object . prototype . propertyIsEnumerable ;
You can’t perform that action at this time.
0 commit comments