UNPKG
react-codemod
Version:
latest (5.4.4)
5.4.4
5.4.3
5.4.2
5.4.1
5.4.0
5.3.0
5.2.2
5.2.1
5.2.0
5.1.1
5.1.0
5.0.5
5.0.4
5.0.3
5.0.2
5.0.1
5.0.0
4.0.1
4.0.0
2.0.0
1.0.0
React codemod scripts
github.com/reactjs/react-codemod
reactjs/react-codemod
react-codemod
/
transforms
/
__testfixtures__
/
manual-bind-to-arrow
/
manual-bind-to-arrow7.input.js
11 lines
(9 loc)
•
186 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
class
SomeClass
{
constructor
() { (
this
: any)._isLoaded =
false
; (
this
: any).isLoaded =
this
.isLoaded.bind(
this
); } isLoaded(): boolean {
return
this
._isLoaded; } }