Skip to content

Commit 9c3740a

Browse files
committed
update normalize-string.js
1 parent 39bba10 commit 9c3740a

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/utils/normalize-string.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,10 @@
1010
function normalizeString(str) {
1111
if (str === null || str === undefined) {
1212
throw new Error('Input cannot be null or undefined.');
13-
}
13+
}
14+
15+
16+
1417

1518
let s = String(str);
1619

0 commit comments

Comments
 (0)