UNPKG

@sentry/react-native

Version:
13 lines 378 B
import { useEncodePolyfill } from '../transports/encodePolyfill'; import { getSentryCarrier } from './carrier'; /** * Encode a string to UTF8 array. */ export function encodeUTF8(input) { const carrier = getSentryCarrier(); if (!carrier.encodePolyfill) { useEncodePolyfill(); } return carrier.encodePolyfill(input); } //# sourceMappingURL=encode.js.map