Skip to content

Commit f74cdb0

Browse files
authored
Update isEmpty.js
1 parent e675e83 commit f74cdb0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/modules/utils/isEmpty.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
let isEmpty = function (str) {
2-
return (typeof str === "undefined" || str === null || str === "")
2+
return (typeof str === "undefined" || str === null || str === "");
33
}
44

55
module.exports.isEmpty = isEmpty;

0 commit comments

Comments
 (0)