* @deprecated Use lookupMappingKey() instead for clarity about what is returned * Convert user's property name back to internal field name * This is the reverse of toUserField()
(userPropertyName: string)
| 180 | * This is the reverse of toUserField() |
| 181 | */ |
| 182 | fromUserField(userPropertyName: string): keyof FieldMapping | null { |
| 183 | return this.lookupMappingKey(userPropertyName); |
| 184 | } |
| 185 | |
| 186 | /** |
| 187 | * Validate that a mapping has no empty field names |
nothing calls this directly
no test coverage detected