diff --git a/index.js b/index.js index 845f0ec..8c21ea9 100644 --- a/index.js +++ b/index.js @@ -20,5 +20,11 @@ var lines = [ ' ▒▒▒▒▒▒▒▒▒▒▀▀', ] -exports.toString = () => lines.join('\n') -exports.toArray = () => lines +exports.toString = function() { + return lines.join('\n') +} + +exports.toArray = function() { + return lines +} +