Skip to content

Commit e1cf68b

Browse files
committed
Update README.md for ESM bundle v0.2.2
1 parent 91030da commit e1cf68b

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,13 @@ limitations under the License.
4242
## Usage
4343

4444
```javascript
45-
import isNumberArray from 'https://cdn.jsdelivr.net/gh/stdlib-js/assert-is-number-array@esm/index.mjs';
45+
import isNumberArray from 'https://cdn.jsdelivr.net/gh/stdlib-js/assert-is-number-array@v0.2.2-esm/index.mjs';
4646
```
4747

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

5050
```javascript
51-
import { objects, primitives } from 'https://cdn.jsdelivr.net/gh/stdlib-js/assert-is-number-array@esm/index.mjs';
51+
import { objects, primitives } from 'https://cdn.jsdelivr.net/gh/stdlib-js/assert-is-number-array@v0.2.2-esm/index.mjs';
5252
```
5353

5454
#### isNumberArray( value )
@@ -111,7 +111,7 @@ bool = isNumberArray.objects( [ new Number( 1 ), 2 ] );
111111
<script type="module">
112112
113113
import Number from 'https://cdn.jsdelivr.net/gh/stdlib-js/number-ctor@esm/index.mjs';
114-
import isNumberArray from 'https://cdn.jsdelivr.net/gh/stdlib-js/assert-is-number-array@esm/index.mjs';
114+
import isNumberArray from 'https://cdn.jsdelivr.net/gh/stdlib-js/assert-is-number-array@v0.2.2-esm/index.mjs';
115115
116116
var bool = isNumberArray( [ 3.14 ] );
117117
// returns true

0 commit comments

Comments
 (0)