Skip to content

Commit 695e414

Browse files
committed
Add missing semicolons to FFI functions
1 parent 58d9ec2 commit 695e414

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/Data/String/CodeUnits.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -120,11 +120,11 @@ exports.splitAt = function (i) {
120120
exports.startsWith = function (pattern) {
121121
return function (s) {
122122
return s.startsWith(pattern);
123-
}
124-
}
123+
};
124+
};
125125

126126
exports.endsWith = function (pattern) {
127127
return function (s) {
128128
return s.endsWith(pattern);
129-
}
130-
}
129+
};
130+
};

0 commit comments

Comments
 (0)