Skip to content

Commit 5976601

Browse files
committed
Update README.md for Deno bundle v0.2.2
1 parent 6d2f8f6 commit 5976601

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@deno/mod.js';
51+
import isAbsolutePath from 'https://cdn.jsdelivr.net/gh/stdlib-js/assert-is-absolute-path@v0.2.2-deno/mod.js';
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@deno/mod.js';
57+
import { posix, win32 } from 'https://cdn.jsdelivr.net/gh/stdlib-js/assert-is-absolute-path@v0.2.2-deno/mod.js';
5858
```
5959

6060
#### isAbsolutePath( value )
@@ -119,7 +119,7 @@ bool = isAbsolutePath.win32( 'foo\\bar\\baz' );
119119
<!-- eslint no-undef: "error" -->
120120

121121
```javascript
122-
import isAbsolutePath from 'https://cdn.jsdelivr.net/gh/stdlib-js/assert-is-absolute-path@deno/mod.js';
122+
import isAbsolutePath from 'https://cdn.jsdelivr.net/gh/stdlib-js/assert-is-absolute-path@v0.2.2-deno/mod.js';
123123

124124
var bool = isAbsolutePath.posix( '/foo/bar/baz' );
125125
// returns true

0 commit comments

Comments
 (0)