Skip to content

Commit

Permalink
Renamed @browserfs/fs-zip to @browserfs/zip
Browse files Browse the repository at this point in the history
  • Loading branch information
james-pre committed Mar 8, 2024
1 parent b270f85 commit 446dd7d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ You can use multiple backends by passing an object to `configure` which maps pat
```js
import { configure } from '@browserfs/core';
import { IndexedDB } from '@browserfs/fs-dom';
import { Zip } from '@browserfs/fs-zip';
import { Zip } from '@browserfs/zip';

const zipData = await (await fetch('mydata.zip')).arrayBuffer();

Expand Down Expand Up @@ -153,7 +153,7 @@ This could be used in the "multiple backends" example like so:
```js
import { IndexedDB } from '@browserfs/fs-dom';
import { Zip } from '@browserfs/fs-zip';
import { Zip } from '@browserfs/zip';

await configure({
'/tmp': 'InMemory',
Expand Down

0 comments on commit 446dd7d

Please sign in to comment.