8000
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 758a710 commit 927170aCopy full SHA for 927170a
README.md
@@ -42,7 +42,7 @@ limitations under the License.
42
## Usage
43
44
```javascript
45
-import put from 'https://cdn.jsdelivr.net/gh/stdlib-js/array-put@deno/mod.js';
+import put from 'https://cdn.jsdelivr.net/gh/stdlib-js/array-put@v0.0.1-deno/mod.js';
46
```
47
48
#### put( x, indices, values\[, options] )
@@ -134,7 +134,7 @@ var out = put( x, [ -10, 10 ], [ 20, 40 ], {
134
import filledBy from 'https://cdn.jsdelivr.net/gh/stdlib-js/array-base-filled-by@deno/mod.js';
135
import discreteUniform from 'https://cdn.jsdelivr.net/gh/stdlib-js/random-base-discrete-uniform@deno/mod.js';
136
import linspace from 'https://cdn.jsdelivr.net/gh/stdlib-js/array-base-linspace@deno/mod.js';
137
138
139
// Generate a linearly spaced array:
140
var x = linspace( 0, 100, 11 );