@@ -51,7 +51,7 @@ export class PatchBuilder {
51
51
this . operations . push ( {
52
52
operation : 'Assign' ,
53
53
location,
54
- params : { value }
54
+ params : { value}
55
55
} ) ;
56
56
return this ;
57
57
}
@@ -60,7 +60,7 @@ export class PatchBuilder {
60
60
this . operations . push ( {
61
61
operation : 'Merge' ,
62
62
location,
63
- params : { value }
63
+ params : { value}
64
64
} ) ;
65
65
return this ;
66
66
}
@@ -69,7 +69,7 @@ export class PatchBuilder {
69
69
this . operations . push ( {
70
70
operation : 'Extend' ,
71
71
location,
72
- params : { value }
72
+ params : { value}
73
73
} ) ;
74
74
return this ;
75
75
}
@@ -87,7 +87,7 @@ export class PatchBuilder {
87
87
this . operations . push ( {
88
88
operation : 'Insert' ,
89
89
location,
90
- params : { index, value }
90
+ params : { index, value}
91
91
} ) ;
92
92
return this ;
93
93
}
@@ -96,7 +96,7 @@ export class PatchBuilder {
96
96
this . operations . push ( {
97
97
operation : 'Append' ,
98
98
location,
99
- params : { value }
99
+ params : { value}
100
100
} ) ;
101
101
return this ;
102
102
}
@@ -105,7 +105,7 @@ export class PatchBuilder {
105
105
this . operations . push ( {
106
106
operation : 'Prepend' ,
107
107
location,
108
- params : { value }
108
+ params : { value}
109
109
} ) ;
110
110
return this ;
111
111
}
@@ -114,7 +114,7 @@ export class PatchBuilder {
114
114
this . operations . push ( {
115
115
operation : 'Add' ,
116
116
location,
117
- params : { value }
117
+ params : { value}
118
118
} ) ;
119
119
return this ;
120
120
}
@@ -123,7 +123,7 @@ export class PatchBuilder {
123
123
this . operations . push ( {
124
124
operation : 'Sub' ,
125
125
location,
126
- params : { value }
126
+ params : { value}
127
127
} ) ;
128
128
return this ;
129
129
}
@@ -132,7 +132,7 @@ export class PatchBuilder {
132
132
this . operations . push ( {
133
133
operation : 'Mul' ,
134
134
location,
135
- params : { value }
135
+ params : { value}
136
136
} ) ;
137
137
return this ;
138
138
}
@@ -141,7 +141,7 @@ export class PatchBuilder {
141
141
this . operations . push ( {
142
142
operation : 'Div' ,
143
143
location,
144
- params : { value }
144
+ params : { value}
145
145
} ) ;
146
146
return this ;
147
147
}
@@ -168,7 +168,7 @@ export class PatchBuilder {
168
168
this . operations . push ( {
169
169
operation : 'Remove' ,
170
170
location,
171
- params : { value }
171
+ params : { value}
172
172
} ) ;
173
173
return this ;
174
174
}
@@ -309,7 +309,7 @@ export function parsePatchProps(props: any, previousProps: any): {} {
309
309
return props ;
310
310
}
311
311
312
- let patchedProps : any = { } ;
312
+ const patchedProps : any = { } ;
313
313
314
314
for ( const key of Object . keys ( props ) ) {
315
315
const val = props [ key ] ;
0 commit comments