Skip to content

Commit 2bc9daa

Browse files
committed
Auto-generated commit
1 parent f4136f1 commit 2bc9daa

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

README.md

+7-2
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,11 @@ limitations under the License.
3232

3333
To use in Observable,
3434

35+
```javascript
36+
LN2 = require( 'https://cdn.jsdelivr.net/gh/stdlib-js/constants-float64-ln-two@umd/browser.js' )
37+
```
38+
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/constants-float64-ln-two/tags). For example,
39+
3540
```javascript
3641
LN2 = require( 'https://cdn.jsdelivr.net/gh/stdlib-js/[email protected]/browser.js' )
3742
```
@@ -45,7 +50,7 @@ var LN2 = require( 'path/to/vendor/umd/constants-float64-ln-two/index.js' )
4550
To include the bundle in a webpage,
4651

4752
```html
48-
<script type="text/javascript" src="https://cdn.jsdelivr.net/gh/stdlib-js/constants-float64-ln-two@v0.0.8-umd/browser.js"></script>
53+
<script type="text/javascript" src="https://cdn.jsdelivr.net/gh/stdlib-js/constants-float64-ln-two@umd/browser.js"></script>
4954
```
5055

5156
If no recognized module system is present, access bundle contents via the global scope:
@@ -83,7 +88,7 @@ var bool = ( LN2 === 0.6931471805599453 );
8388
<!DOCTYPE html>
8489
<html lang="en">
8590
<body>
86-
<script type="text/javascript" src="https://cdn.jsdelivr.net/gh/stdlib-js/constants-float64-ln-two@v0.0.8-umd/browser.js"></script>
91+
<script type="text/javascript" src="https://cdn.jsdelivr.net/gh/stdlib-js/constants-float64-ln-two@umd/browser.js"></script>
8792
<script type="text/javascript">
8893
(function () {
8994

0 commit comments

Comments
 (0)