Skip to content

Commit 09877b3

Browse files
committed
Auto-generated commit
1 parent bcc65f9 commit 09877b3

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,11 @@ limitations under the License.
4747

4848
## Usage
4949

50+
```javascript
51+
import instanceOf from 'https://cdn.jsdelivr.net/gh/stdlib-js/assert-instance-of@deno/mod.js';
52+
```
53+
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-instance-of/tags). For example,
54+
5055
```javascript
5156
import instanceOf from 'https://cdn.jsdelivr.net/gh/stdlib-js/assert-instance-of@v0.2.2-deno/mod.js';
5257
```
@@ -122,7 +127,7 @@ var bool = instanceOf( bar, Foo );
122127
import Number from 'https://cdn.jsdelivr.net/gh/stdlib-js/number-ctor@deno/mod.js';
123128
import Object from 'https://cdn.jsdelivr.net/gh/stdlib-js/object-ctor@deno/mod.js';
124129
import Function from 'https://cdn.jsdelivr.net/gh/stdlib-js/function-ctor@deno/mod.js';
125-
import instanceOf from 'https://cdn.jsdelivr.net/gh/stdlib-js/assert-instance-of@v0.2.2-deno/mod.js';
130+
import instanceOf from 'https://cdn.jsdelivr.net/gh/stdlib-js/assert-instance-of@deno/mod.js';
126131
127132
var bool = instanceOf( [], Array );
128133
// returns true

0 commit comments

Comments
 (0)