UNPKG

fume-fhir-converter

Version:

FHIR-Utilized Mapping Engine - Community

9 lines (7 loc) 217 B
/** * © Copyright Outburn Ltd. 2022-2024 All Rights Reserved * Project name: FUME-COMMUNITY */ export const returnPathWithoutX = (path: string) => { return path.includes('[x]') ? path.slice(0, -3) : path; };