namuol / tap-difflet

TAP output formatter using difflet for inequality errors.
48 stars 8 forks source link

bin: remove arrow functions for Node 0.12 support #14

Closed nickdesaulniers closed 5 years ago

nickdesaulniers commented 5 years ago

Commit 22b7aa52f7 ("Move main logic from bin file (#9)") broke tap-difflet Node 0.10 and 0.12 support due to its use of arrow functions, which aren't supported by old versions of Node.

This was spotted trying to upgrade node-nanomsg to use tap-difflet.

Fixes #13

namuol commented 5 years ago

Thanks @nickdesaulniers!