Skip to content

Commit

Permalink
Update README.md for ESM bundle v0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
stdlib-bot committed Nov 8, 2023
1 parent c918e1e commit f7b92d7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,13 @@ limitations under the License.
## Usage

```javascript
import math from 'https://cdn.jsdelivr.net/gh/stdlib-js/math@esm/index.mjs';
import math from 'https://cdn.jsdelivr.net/gh/stdlib-js/math@v0.1.1-esm/index.mjs';
```

You can also import the following named exports from the package:

```javascript
import { base, iter, special, strided, tools } from 'https://cdn.jsdelivr.net/gh/stdlib-js/math@esm/index.mjs';
import { base, iter, special, strided, tools } from 'https://cdn.jsdelivr.net/gh/stdlib-js/math@v0.1.1-esm/index.mjs';
```

#### math
Expand Down Expand Up @@ -95,7 +95,7 @@ The namespace consists of the following sub-namespaces:
<script type="module">
import objectKeys from 'https://cdn.jsdelivr.net/gh/stdlib-js/utils/keys@esm/index.mjs';
import math from 'https://cdn.jsdelivr.net/gh/stdlib-js/math@esm/index.mjs';
import math from 'https://cdn.jsdelivr.net/gh/stdlib-js/math@v0.1.1-esm/index.mjs';
console.log( objectKeys( math ) );
Expand Down

0 comments on commit f7b92d7

Please sign in to comment.