8 lines
174 B
JavaScript
8 lines
174 B
JavaScript
|
export default {
|
||
|
init: function () {
|
||
|
return this.xf['@@transducer/init']();
|
||
|
},
|
||
|
result: function (result) {
|
||
|
return this.xf['@@transducer/result'](result);
|
||
|
}
|
||
|
};
|