您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12345678910111213141516
  1. const config = require('../../../db/data-generator/config.json')
  2. /**
  3. * Grab the zip code string
  4. */
  5. const getZipCodeFromProfile = profile => {
  6. // There should only be one zip code entry per profile
  7. let zipRes = profile.responses.find(
  8. res => res.response_key_id == config.zipcodeKey,
  9. )
  10. return zipRes.val
  11. }
  12. module.exports = {
  13. getZipCodeFromProfile,
  14. }