Revert edits

This commit is contained in:
Benjo Kho
2021-08-07 14:54:14 +08:00
parent 61f38bf60c
commit 3236ae156c
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
const reverseString = function(str) {
let newStr = str.split("").reverse().join("");
};
module.exports = reverseString;