{"version":3,"file":"companyHelpers-bc1e74f9.js","sources":["../../../app/javascript/shared/helper/companyHelpers.ts"],"sourcesContent":["// When user chooses to create a new company, React Typeahead will select\n// an object with id set to a string like 'new-id-1'.\n// prettier-ignore\n\nimport { uniqBy } from 'lodash'\nimport Option from 'interfaces/CompaniesSearch'\nimport Company from 'shared/models/company.model'\nimport { Maybe, Optional } from 'shared/util/types.util'\nimport { LOOSE_ID } from 'interfaces/generalTypes'\n\nexport const isNewCompany = (companyId: Optional): boolean => (\n companyId == null || typeof companyId === 'string'\n)\n\nexport function companyToOption(company: Company): Option {\n return {\n id: company.id as number ?? null,\n name: company.name ?? '',\n customOption: company.id === undefined,\n faviconUrl: company.faviconUrl ?? '',\n highlighted: company.highlighted ?? '',\n zip: company.zip ?? null,\n city: company.city ?? null,\n }\n}\n\nexport function optionToCompany(option: Option): Company\nexport function optionToCompany(option: Maybe