Format field or an object of fields from database to client.
(field: string | Object)
| 262 | |
| 263 | /** Format field or an object of fields from database to client. */ |
| 264 | static formatFieldToClient(field: string | Object) { |
| 265 | return this._formatField(this._fieldMatching.toClient, field, camelCase); |
| 266 | } |
| 267 | |
| 268 | /* Wraps values with defaults. */ |
| 269 | private static _wrapValuesWithDefaults(values: Values): Values { |
no test coverage detected