Skip to content

Commit 30bef45

Browse files
committed
Auto-generated commit
1 parent 8db0a84 commit 30bef45

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 isIntegerArray from 'https://cdn.jsdelivr.net/gh/stdlib-js/assert-is-integer-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-integer-array/tags). For example,
48+
4449
```javascript
4550
import isIntegerArray 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-integer-array@v0.2.1-deno/mod.js';
56+
import { objects, primitives } from 'https://cdn.jsdelivr.net/gh/stdlib-js/assert-is-integer-array@deno/mod.js';
5257
```
5358

5459
#### isIntegerArray( value )
@@ -119,7 +124,7 @@ bool = isIntegerArray.objects( [ -3.0, new Number(1.0) ] );
119124

120125
```javascript
121126
import Number from 'https://cdn.jsdelivr.net/gh/stdlib-js/number-ctor@deno/mod.js';
122-
import isIntegerArray from 'https://cdn.jsdelivr.net/gh/stdlib-js/assert-is-integer-array@v0.2.1-deno/mod.js';
127+
import isIntegerArray from 'https://cdn.jsdelivr.net/gh/stdlib-js/assert-is-integer-array@deno/mod.js';
123128

124129
var bool = isIntegerArray( [ -5, 0, 2, 5 ] );
125130
// returns true

0 commit comments

Comments
 (0)