Skip to content

Commit 43fb700

Browse files
committed
Auto-generated commit
1 parent 1b06470 commit 43fb700

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,19 @@ limitations under the License.
4141

4242
## Usage
4343

44+
```javascript
45+
import isStringArray from 'https://cdn.jsdelivr.net/gh/stdlib-js/assert-is-string-array@deno/mod.js';
46+
```
47+
The previous example will load the latest bundled code from the deno branch. Alternatively, you may load a specific version by loading the file from one of the [tagged bundles](https://github.com/stdlib-js/assert-is-string-array/tags). For example,
48+
4449
```javascript
4550
import isStringArray from 'https://cdn.jsdelivr.net/gh/stdlib-js/[email protected]/mod.js';
4651
```
4752

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

5055
```javascript
51-
import { objects, primitives } from 'https://cdn.jsdelivr.net/gh/stdlib-js/assert-is-string-array@v0.2.0-deno/mod.js';
56+
import { objects, primitives } from 'https://cdn.jsdelivr.net/gh/stdlib-js/assert-is-string-array@deno/mod.js';
5257
```
5358

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

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

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

0 commit comments

Comments
 (0)