We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c5aa4e commit 0c3d49cCopy full SHA for 0c3d49c
README.md
@@ -15,7 +15,7 @@ npm install @isomorphic-git/path-browserify
15
## Usage
16
17
```javascript
18
-import path from '@isomorphic-git/path';
+import path from '@isomorphic-git/path-browserify';
19
20
const filename = 'logo.png';
21
const logo = path.join('./assets/img', filename);
@@ -25,13 +25,13 @@ document.querySelector('#logo').src = logo;
25
Methods under `path` can be imported individually.
26
27
28
-import { join } from '@isomorphic-git/path';
+import { join } from '@isomorphic-git/path-browserify';
29
```
30
31
If your project uses CommonJS, this is also supported.
32
33
34
-const path = require('@isomorphic-git/path');
+const path = require('@isomorphic-git/path-browserify');
35
36
37
## API
0 commit comments