diff --git a/lib/node_modules/@stdlib/blas/ext/base/dxdy/package.json b/lib/node_modules/@stdlib/blas/ext/base/dxdy/package.json index e954f5fa4f32..7b1e0b347909 100644 --- a/lib/node_modules/@stdlib/blas/ext/base/dxdy/package.json +++ b/lib/node_modules/@stdlib/blas/ext/base/dxdy/package.json @@ -63,6 +63,8 @@ "algebra", "subroutines", "divide", + "division", + "quotient", "transform", "strided", "array", diff --git a/lib/node_modules/@stdlib/number/uint64/base/string2words/README.md b/lib/node_modules/@stdlib/number/uint64/base/string2words/README.md index aabf5312da17..119554771f2e 100644 --- a/lib/node_modules/@stdlib/number/uint64/base/string2words/README.md +++ b/lib/node_modules/@stdlib/number/uint64/base/string2words/README.md @@ -79,7 +79,7 @@ var bool = ( w === out ); ## Notes - The input string must be a valid representation of an unsigned 64-bit integer in the specified radix, containing no whitespace, sign symbols, or leading zeros. -- If the provided string represents a value greater than `2^64-1` or the radix is invalid, then `0` is assigned to both high and low words. +- If the provided string represents a value greater than `2^64-1` or the radix is not an integer on the interval `[2, 36]`, the function throws a `RangeError`.