File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed
Filter options
Expand file tree Collapse file tree 1 file changed +7
-2
lines changed
Original file line number Diff line number Diff line change @@ -53,6 +53,11 @@ limitations under the License.
53
53
54
54
To use in Observable,
55
55
56
+ ``` javascript
57
+ ArrayBuffer = require ( ' https://cdn.jsdelivr.net/gh/stdlib-js/array-buffer@umd/browser.js' )
58
+ ```
59
+ The previous example will load the latest bundled code from the umd branch. Alternatively, you may load a specific version by loading the file from one of the [ tagged bundles] ( https://github.com/stdlib-js/array-buffer/tags ) . For example,
60
+
56
61
``` javascript
57
62
ArrayBuffer = require ( ' https://cdn.jsdelivr.net/gh/stdlib-js/array-buffer@v0.1.0-umd/browser.js' )
58
63
```
@@ -66,7 +71,7 @@ var ArrayBuffer = require( 'path/to/vendor/umd/array-buffer/index.js' )
66
71
To include the bundle in a webpage,
67
72
68
73
``` html
69
- <script type =" text/javascript" src =" https://cdn.jsdelivr.net/gh/stdlib-js/array-buffer@v0.1.0- umd/browser.js" ></script >
74
+ <script type =" text/javascript" src =" https://cdn.jsdelivr.net/gh/stdlib-js/array-buffer@umd/browser.js" ></script >
70
75
```
71
76
72
77
If no recognized module system is present, access bundle contents via the global scope:
@@ -229,7 +234,7 @@ var nbytes = b2.byteLength;
229
234
<script type =" text/javascript" src =" https://cdn.jsdelivr.net/gh/stdlib-js/array-float64@umd/browser.js" ></script >
230
235
<script type =" text/javascript" src =" https://cdn.jsdelivr.net/gh/stdlib-js/array-uint8@umd/browser.js" ></script >
231
236
<script type =" text/javascript" src =" https://cdn.jsdelivr.net/gh/stdlib-js/number-uint8-base-to-binary-string@umd/browser.js" ></script >
232
- <script type =" text/javascript" src =" https://cdn.jsdelivr.net/gh/stdlib-js/array-buffer@v0.1.0- umd/browser.js" ></script >
237
+ <script type =" text/javascript" src =" https://cdn.jsdelivr.net/gh/stdlib-js/array-buffer@umd/browser.js" ></script >
233
238
<script type =" text/javascript" >
234
239
(function () {
235
240
You can’t perform that action at this time.
0 commit comments