* Returns new lazy. * @private * @param {LazyFunction<SerializedType, DeserializedType>} fn lazy function * @param {Context} context context object * @returns {LazyFunction<DeserializedType, SerializedType>} new lazy
(fn, context)
| 1222 | * @returns {LazyFunction<DeserializedType, SerializedType>} new lazy |
| 1223 | */ |
| 1224 | _deserializeLazy(fn, context) { |
| 1225 | return SerializerMiddleware.deserializeLazy(fn, (data) => |
| 1226 | this._deserialize(data, context) |
| 1227 | ); |
| 1228 | } |
| 1229 | |
| 1230 | /** |
| 1231 | * Returns deserialized data. |
no test coverage detected