import { Base64 } from 'js-base64'

function encodeText(text: string, encoding: string) {
  if (encoding === 'UTF8') {
    return Base64.encode(text)
  }
  return text
}

export { encodeText }
