We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2e625a commit c9ce170Copy full SHA for c9ce170
2 files changed
lib/node_modules/@stdlib/array/convert-same/README.md
@@ -108,7 +108,7 @@ var DTYPES = dtypes();
108
var out;
109
var i;
110
for ( i = 0; i < DTYPES.length; i++ ) {
111
- out = convertArraySame( arr, new ctors( DTYPES[ i ] )( 0 ) );
+ out = convertArraySame( arr, new ( ctors( DTYPES[ i ] ) )( 0 ) );
112
console.log( out );
113
}
114
```
lib/node_modules/@stdlib/array/convert-same/examples/index.js
@@ -34,6 +34,6 @@ var DTYPES = dtypes();
34
35
36
37
38
39
0 commit comments