Skip to content

Commit 6bb78ed

Browse files
authored
style: fix indentation
1 parent 603d73e commit 6bb78ed

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/lib/isURL.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,8 +117,8 @@ export default function isURL(url, options) {
117117
if (!starts_with_slashes) {
118118
const first_slash_position = after_colon.indexOf('/');
119119
const before_slash = first_slash_position === -1
120-
? after_colon
121-
: after_colon.substring(0, first_slash_position);
120+
? after_colon
121+
: after_colon.substring(0, first_slash_position);
122122
const at_position = before_slash.indexOf('@');
123123

124124
if (at_position !== -1) {

0 commit comments

Comments
 (0)