fume-fhir-converter
Version:
FHIR-Utilized Mapping Engine - Community
12 lines • 412 B
JavaScript
;
/**
* © Copyright Outburn Ltd. 2022-2024 All Rights Reserved
* Project name: FUME-COMMUNITY
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.returnPathWithoutX = void 0;
const returnPathWithoutX = (path) => {
return path.includes('[x]') ? path.slice(0, -3) : path;
};
exports.returnPathWithoutX = returnPathWithoutX;
//# sourceMappingURL=returnPathWithoutX.js.map