Skip to content

Commit 8e44f89

Browse files
committed
Update README.md for ESM bundle v0.2.2
1 parent 3cb99c2 commit 8e44f89

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
@@ -48,13 +48,13 @@ limitations under the License.
4848
## Usage
4949

5050
```javascript
51-
import isAbsolutePath from 'https://cdn.jsdelivr.net/gh/stdlib-js/assert-is-absolute-path@esm/index.mjs';
51+
import isAbsolutePath from 'https://cdn.jsdelivr.net/gh/stdlib-js/assert-is-absolute-path@v0.2.2-esm/index.mjs';
5252
```
5353

5454
You can also import the following named exports from the package:
5555

5656
```javascript
57-
import { posix, win32 } from 'https://cdn.jsdelivr.net/gh/stdlib-js/assert-is-absolute-path@esm/index.mjs';
57+
import { posix, win32 } from 'https://cdn.jsdelivr.net/gh/stdlib-js/assert-is-absolute-path@v0.2.2-esm/index.mjs';
5858
```
5959

6060
#### isAbsolutePath( value )
@@ -124,7 +124,7 @@ bool = isAbsolutePath.win32( 'foo\\bar\\baz' );
124124
<body>
125125
<script type="module">
126126
127-
import isAbsolutePath from 'https://cdn.jsdelivr.net/gh/stdlib-js/assert-is-absolute-path@esm/index.mjs';
127+
import isAbsolutePath from 'https://cdn.jsdelivr.net/gh/stdlib-js/assert-is-absolute-path@v0.2.2-esm/index.mjs';
128128
129129
var bool = isAbsolutePath.posix( '/foo/bar/baz' );
130130
// returns true

0 commit comments

Comments
 (0)