@@ -231,6 +231,9 @@ export function transformObject(
231
231
thisArg : object = null
232
232
) : JSONValue {
233
233
const mode = typeof options === 'string' ? options : options . mode ;
234
+
235
+ let path : string , transform : string , result , part : string , func ;
236
+
234
237
switch ( mode ) {
235
238
case 'done' :
236
239
return IpylabModel . OPERATION_DONE ;
@@ -243,20 +246,21 @@ export function transformObject(
243
246
case 'attribute' :
244
247
// expects simple: {parts:['dotted.attribute']}
245
248
// or advanced: {parts:[{path:'dotted.attribute', transform:'...' }]
246
- const result : { [ key : string ] : any } = new Object ( ) ;
249
+ result = new Object ( ) ;
247
250
for ( let i = 0 ; i < options . parts . length ; i ++ ) {
248
251
if ( typeof options . parts [ i ] === 'string' ) {
249
- var path = options . parts [ i ] ;
250
- var transform : any = 'raw' ;
252
+ path = options . parts [ i ] ;
253
+ transform = 'raw' ;
251
254
} else {
252
- var { path, transform } = options . parts [ i ] ;
255
+ path = options . parts [ i ] . path ;
256
+ transform = options . parts [ i ] . transform ;
253
257
}
254
- const part = getNestedObject ( obj , path ) ;
255
- result [ path ] = transformObject ( part , transform ) ;
258
+ part = getNestedObject ( obj , path ) ;
259
+ ( result as any ) [ path ] = transformObject ( part , transform ) ;
256
260
}
257
- return result ;
261
+ return result as any ;
258
262
case 'function' :
259
- var func = toFunction ( options . code ) . bind ( thisArg ) ;
263
+ func = toFunction ( options . code ) . bind ( thisArg ) ;
260
264
return func ( obj ) ;
261
265
default :
262
266
throw new Error ( `Invalid return mode: '${ options . mode } '` ) ;
0 commit comments