Skip to content

Commit fc68af9

Browse files
committed
Update README.md for ESM bundle v0.2.2
1 parent e40d39a commit fc68af9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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 isStringArray from 'https://cdn.jsdelivr.net/gh/stdlib-js/assert-is-string-array@esm/index.mjs';
45+
import isStringArray from 'https://cdn.jsdelivr.net/gh/stdlib-js/assert-is-string-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-string-array@esm/index.mjs';
51+
import { objects, primitives } from 'https://cdn.jsdelivr.net/gh/stdlib-js/assert-is-string-array@v0.2.2-esm/index.mjs';
5252
```
5353

5454
#### isStringArray( value )
@@ -111,7 +111,7 @@ bool = isStringArray.objects( [ 'beep', new String('boop') ] );
111111
<body>
112112
<script type="module">
113113
114-
import isStringArray from 'https://cdn.jsdelivr.net/gh/stdlib-js/assert-is-string-array@esm/index.mjs';
114+
import isStringArray from 'https://cdn.jsdelivr.net/gh/stdlib-js/assert-is-string-array@v0.2.2-esm/index.mjs';
115115
116116
var bool = isStringArray( [ 'Hello World!' ] );
117117
// returns true

0 commit comments

Comments
 (0)