UNPKG

fume-fhir-converter

Version:

FHIR-Utilized Mapping Engine - Community

12 lines 491 B
"use strict"; /** * © Copyright Outburn Ltd. 2022-2024 All Rights Reserved * Project name: FUME-COMMUNITY */ Object.defineProperty(exports, "__esModule", { value: true }); exports.base64decode = exports.base64encode = void 0; const base64encode = (input) => Buffer.from(input).toString('base64'); exports.base64encode = base64encode; const base64decode = (input) => Buffer.from(input, 'base64').toString('utf-8'); exports.base64decode = base64decode; //# sourceMappingURL=base64.js.map