* Returns new lazy. * @param {LazyFunction<DeserializedType, SerializedType>} fn lazy function * @param {Context} context serialize function * @returns {LazyFunction<SerializedType, DeserializedType>} new lazy
(fn, context)
| 687 | * @returns {LazyFunction<SerializedType, DeserializedType>} new lazy |
| 688 | */ |
| 689 | _serializeLazy(fn, context) { |
| 690 | return SerializerMiddleware.serializeLazy(fn, (data) => |
| 691 | this._serialize(data, context) |
| 692 | ); |
| 693 | } |
| 694 | |
| 695 | /** |
| 696 | * Returns serialized data. |
no test coverage detected