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() {
44
44
typeof Global . BigInt === 'function' &&
45
45
typeof BigInt === 'function' && // eslint-disable-line stdlib/require-globals
46
46
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
48
48
) ;
49
49
}
50
50
Original file line number Diff line number Diff line change 35
35
* 'boop': true
36
36
* };
37
37
*
38
- * var bool = isEnumerableProperty( beep, 'boop' );
38
+ * var bool = isEnumerableProperty.call ( beep, 'boop' );
39
39
* // returns true
40
40
*
41
41
* @example
42
42
* var beep = {
43
43
* 'boop': true
44
44
* };
45
45
*
46
- * var bool = isEnumerableProperty( beep, 'hasOwnProperty' );
46
+ * var bool = isEnumerableProperty.call ( beep, 'hasOwnProperty' );
47
47
* // returns false
48
48
*/
49
49
var isEnumerableProperty = Object . prototype . propertyIsEnumerable ;
You can’t perform that action at this time.
0 commit comments