* Decoder constructor * * @param {function} reviver - custom reviver to pass down to JSON.stringify
(reviver)
| 2716 | * @param {function} reviver - custom reviver to pass down to JSON.stringify |
| 2717 | */ |
| 2718 | function Decoder(reviver) { |
| 2719 | var _this; |
| 2720 | _classCallCheck(this, Decoder); |
| 2721 | _this = _super.call(this); |
| 2722 | _this.reviver = reviver; |
| 2723 | return _this; |
| 2724 | } |
| 2725 | /** |
| 2726 | * Decodes an encoded packet string into packet JSON. |
| 2727 | * |
nothing calls this directly
no test coverage detected