4 comments

[ 2.6 ms ] story [ 22.9 ms ] thread
Error in /~/index.ts (19:21) Cannot read property 'replace' of undefined
Can you please report the exact browser version and platform you are using ? I will try to fix it.
This is awesome.

I know it's just a quick hack, but I'm curious about this in the code:

  200 +(30*word.length - 7)
I've never used TypeScript, but I'm assuming this is the same as:

  (200 - 7) +(30*word.length)
But I guess you meant:

  200 +(30*(word.length - 7))