Skip to content

Commit

Permalink
Node 0.12 compatible
Browse files Browse the repository at this point in the history
  • Loading branch information
rexxars committed Oct 3, 2016
1 parent d17c288 commit 2c14710
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions index.js
Expand Up @@ -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
}

0 comments on commit 2c14710

Please sign in to comment.