UNPKG

es6-arrow-function

Version:

Shorthand arrow functions compiled to ES5.

10 lines (7 loc) 133 B
/* jshint esnext:true */ var obj = { method: function() { return () => this; } }; assert.strictEqual(obj.method()(), obj);