18F/e-QIP-prototype

View on GitHub
src/schema/form/location.js

Summary

Maintainability
A
0 mins
Test Coverage
import { general } from './general'
import { countryString } from '../../validators/location'

export const location = (data = {}) => {
  return general('location', {
    ...data,
    country: countryString(data.country)
  })
}