Skip to content

Commit e525d83

Browse files
authored
Discard changes to lib/node_modules/@stdlib/ndarray/to-fancy/lib/set_slice.js
1 parent 736147b commit e525d83

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/ndarray/to-fancy/lib/set_slice.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ function setSlice( target, property, value, receiver, ctx ) {
117117
// Manually resolve the minimum data type of the closest "kind" necessary for storing a scalar value, as `minDataType()` defaults to unsigned integer data types when a scalar value is greater than or equal to zero...
118118
if ( value < 0 ) {
119119
vdt = minDataType( value );
120-
} else if ( value <= INT8_MAX ) { // NOTE: consider moving this logic to `@stdlib/ndarray/base/min-signed-intger-dtype` where the interface can assume that `value` is integer-valued
120+
} else if ( value <= INT8_MAX ) { // TODO: consider moving this logic to `@stdlib/ndarray/base/min-signed-intger-dtype` where the interface can assume that `value` is integer-valued
121121
vdt = 'int8';
122122
} else if ( value <= INT16_MAX ) {
123123
vdt = 'int16';

0 commit comments

Comments
 (0)