Skip to content

Commit 0b5009d

Browse files
committed
fix: travis syntax
6:25: A space is required after ','. 6:26: Strings must use singlequote. Newline required at end of file but not found.
1 parent 13097a8 commit 0b5009d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

javascript/_10.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@ var isMatch = function (s, p) {
33
return (new RegExp('^' + p + '$')).test(s)
44
}
55

6-
console.log(isMatch('aa',"a"))
6+
7+
console.log(isMatch('aa', 'a*'))

0 commit comments

Comments
 (0)