How to use the toJS function from mobx

Find comprehensive JavaScript mobx.toJS code examples handpicked from public code repositorys.

1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
    key: '__toJSAttr',
    value: function __toJSAttr(attr, value) {
        var casts = this.casts();
        var cast = casts[attr];
        if (cast !== undefined) {
            return mobx.toJS(cast.toJS(attr, value));
        }
        return mobx.toJS(value);
    }
}, {
fork icon13
star icon30
watch icon11

+ 7 other calls in file

144
145
146
147
148
149
150
151
152
153
  density: this.density,
  syncModeIndex: this.syncModeIndex,
  syncRate: this.syncRate,
  detailViewModeIndex: this.detailViewModeIndex,
  activeInstruments: this._activeInstruments,
  velAmpDict: toJS(this.velAmpDict),
  velRandDict: toJS(this.velRandDict),
  timeShiftDict: toJS(this.timeShiftDict),
  timeRandDict: toJS(this.timeRandDict),
});
fork icon0
star icon13
watch icon0

+ 3 other calls in file

186
187
188
189
190
191
192
193
194
195
    const casts = this.casts();
    const cast = casts[attr];
    if (cast !== undefined) {
        return mobx_1.toJS(cast.toJS(attr, value));
    }
    return mobx_1.toJS(value);
}
toJS() {
    const output = {};
    this.__attributes.forEach(attr => {
fork icon0
star icon0
watch icon0

+ 3 other calls in file