Skip to content

Commit 3f6550c

Browse files
committed
Update README.md for Deno bundle v0.2.2
1 parent 2f170f4 commit 3f6550c

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

5454
#### isStringArray( value )
@@ -106,7 +106,7 @@ bool = isStringArray.objects( [ 'beep', new String('boop') ] );
106106
<!-- eslint no-undef: "error" -->
107107

108108
```javascript
109-
import isStringArray from 'https://cdn.jsdelivr.net/gh/stdlib-js/assert-is-string-array@deno/mod.js';
109+
import isStringArray from 'https://cdn.jsdelivr.net/gh/stdlib-js/assert-is-string-array@v0.2.2-deno/mod.js';
110110

111111
var bool = isStringArray( [ 'Hello World!' ] );
112112
// returns true

0 commit comments

Comments
 (0)