Closed bezzad closed 5 years ago
I have an angularjs project which created by Typescript 3 with target es5. In this version of javascript the arrow functions => has not been supported. like below codes:
es5
map(e => el[0].addEventListener(e, handler, true));
I can make a pull-request changing the es6 arrow function for regular functions
3.1.0
I have an angularjs project which created by Typescript 3 with target
es5
. In this version of javascript the arrow functions => has not been supported. like below codes: