style: Ran prettier.

This commit is contained in:
Spencer Brower
2023-05-25 17:32:29 -04:00
parent 7f8ef72f19
commit 337942657a
5 changed files with 15 additions and 24 deletions

View File

@@ -10,7 +10,7 @@ exports.curry = function (fn) {
return (...more) => (0, exports.curry)(fn)(...args, ...more);
};
};
const isEmpty = (str) => str == null || str === '';
const isEmpty = (str) => str == null || str === "";
exports.isEmpty = isEmpty;
const tail = (str) => str.substring(1);
exports.tail = tail;