Add semicolon for tdd exports
This commit is contained in:
@ -1,3 +1,3 @@
|
||||
const curry = (fn, arity = fn.length, ...args) =>
|
||||
arity <= args.length ? fn(...args) : curry.bind(null, fn, arity, ...args);
|
||||
module.exports = curry
|
||||
module.exports = curry;
|
||||
Reference in New Issue
Block a user