Skip to content

Commit 16f35d9

Browse files
committed
Auto-generated commit
1 parent d0e26f5 commit 16f35d9

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
@@ -41,6 +41,11 @@ limitations under the License.
4141

4242
## Usage
4343

44+
```javascript
45+
import isPlainObjectArray from 'https://cdn.jsdelivr.net/gh/stdlib-js/assert-is-plain-object-array@esm/index.mjs';
46+
```
47+
The previous example will load the latest bundled code from the esm 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-plain-object-array/tags). For example,
48+
4449
```javascript
4550
import isPlainObjectArray from 'https://cdn.jsdelivr.net/gh/stdlib-js/assert-is-plain-object-array@v0.2.0-esm/index.mjs';
4651
```
@@ -89,7 +94,7 @@ bool = isPlainObjectArray( [ null, {} ] );
8994
<script type="module">
9095
9196
import Number from 'https://cdn.jsdelivr.net/gh/stdlib-js/number-ctor@esm/index.mjs';
92-
import isPlainObjectArray from 'https://cdn.jsdelivr.net/gh/stdlib-js/assert-is-plain-object-array@v0.2.0-esm/index.mjs';
97+
import isPlainObjectArray from 'https://cdn.jsdelivr.net/gh/stdlib-js/assert-is-plain-object-array@esm/index.mjs';
9398
9499
var bool = isPlainObjectArray( [ { 'beep': 'boop' }, {}, {} ] );
95100
// returns true

0 commit comments

Comments
 (0)