Skip to content

Commit d26bfc8

Browse files
committedNov 23, 2017
Fix max length
1 parent 020cf6c commit d26bfc8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎lib/node_modules/@stdlib/assert/is-typed-array-like/lib/is_typed_array_like.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
var isNonNegativeInteger = require( '@stdlib/assert/is-nonnegative-integer' ).isPrimitive;
66
var isNumber = require( '@stdlib/assert/is-number' ).isPrimitive;
7-
var MAX = require( '@stdlib/math/constants/uint32-max' );
7+
var MAX = require( '@stdlib/array/constants/max-typedarray-length' );
88

99

1010
// MAIN //

0 commit comments

Comments
 (0)
Please sign in to comment.