decycleObject function

  1. @JS()
dynamic decycleObject(
  1. dynamic object
)

See https://github.com/douglascrockford/JSON-js/blob/master/cycle.js Remove circular references from an object. Required for JSON.stringify in React Native, which tends to blow up a lot.

Implementation

@JS()
external dynamic decycleObject(dynamic object);