Format field or an object of fields from client to database.
(field: string | Object)
| 257 | |
| 258 | /** Format field or an object of fields from client to database. */ |
| 259 | static formatFieldToDatabase(field: string | Object) { |
| 260 | return this._formatField(this._fieldMatching.toDatabase, field); |
| 261 | } |
| 262 | |
| 263 | /** Format field or an object of fields from database to client. */ |
| 264 | static formatFieldToClient(field: string | Object) { |
no test coverage detected