Add semicolon for tdd exports
This commit is contained in:
@ -2,4 +2,4 @@ const dropRightWhile = (arr, func) => {
|
||||
while (arr.length > 0 && !func(arr[arr.length - 1])) arr = arr.slice(0, -1);
|
||||
return arr;
|
||||
};
|
||||
module.exports = dropRightWhile
|
||||
module.exports = dropRightWhile;
|
||||
Reference in New Issue
Block a user