Skip to content

Commit bb4d3e1

Browse files
committed
Update README.md for Deno bundle v0.2.2
1 parent 7fdf3af commit bb4d3e1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,13 @@ limitations under the License.
4242
## Usage
4343

4444
```javascript
45-
import writeFile from 'https://cdn.jsdelivr.net/gh/stdlib-js/fs-write-file@deno/mod.js';
45+
import writeFile from 'https://cdn.jsdelivr.net/gh/stdlib-js/fs-write-file@v0.2.2-deno/mod.js';
4646
```
4747

4848
You can also import the following named exports from the package:
4949

5050
```javascript
51-
import { sync } from 'https://cdn.jsdelivr.net/gh/stdlib-js/fs-write-file@deno/mod.js';
51+
import { sync } from 'https://cdn.jsdelivr.net/gh/stdlib-js/fs-write-file@v0.2.2-deno/mod.js';
5252
```
5353

5454
#### writeFile( file, data\[, options], clbk )
@@ -131,7 +131,7 @@ The function accepts the same `options` and has the same defaults as [`fs.writeF
131131
<!-- run-disable -->
132132

133133
```javascript
134-
import writeFile from 'https://cdn.jsdelivr.net/gh/stdlib-js/fs-write-file@deno/mod.js';
134+
import writeFile from 'https://cdn.jsdelivr.net/gh/stdlib-js/fs-write-file@v0.2.2-deno/mod.js';
135135
136136
// Explicitly handle the error...
137137
var err = writeFile.sync( '/path/to/file.txt', 'beep boop\n' );
@@ -153,7 +153,7 @@ The function accepts the same `options` and has the same defaults as [`fs.writeF
153153

154154
```javascript
155155
var join = require( 'path' ).join;
156-
import writeFile from 'https://cdn.jsdelivr.net/gh/stdlib-js/fs-write-file@deno/mod.js';
156+
import writeFile from 'https://cdn.jsdelivr.net/gh/stdlib-js/fs-write-file@v0.2.2-deno/mod.js';
157157
158158
var fpath = join( __dirname, 'examples', 'fixtures', 'file.txt' );
159159

0 commit comments

Comments
 (0)