File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -23,14 +23,14 @@ $ yarn add is-git-remote
2323``` js
2424const isGitRemote = require (' is-git-remote' ); // import isGitRemote from 'is-git-remote'
2525
26- countGitTags (' www.github.com/username/repo-that-exists' ); // => true
26+ isGitRemote (' www.github.com/username/repo-that-exists' ); // => true
2727
28- countGitTags (' https://www.github.com/username/repo-that-exists' ); // => true
28+ isGitRemote (' https://www.github.com/username/repo-that-exists' ); // => true
2929
30- countGitTags (' username/repo-that-exists' , ' bitbucket.com' ); // => true
30+ isGitRemote (' username/repo-that-exists' , ' bitbucket.com' ); // => true
3131
3232// automatically checks github if no host is provided
33- countGitTags (' username/repo-that-not-exists' ); // => false
33+ isGitRemote (' username/repo-that-not-exists' ); // => false
3434```
3535
3636## LICENSE
You can’t perform that action at this time.
0 commit comments