mirror of
https://github.com/sbrow/strings.git
synced 2025-12-29 23:17:39 -05:00
style: Ran prettier.
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user