@adyen/kyc-components
Version:
This guide assumes that you have already an account with Adyen. A legalEntity needs to be created, and you need to have a `legalEntityId` to instatiate a Component.
12 lines (11 loc) • 752 B
JavaScript
try {
let e = "undefined" != typeof window ? window : "undefined" != typeof global ? global : "undefined" != typeof globalThis ? globalThis : "undefined" != typeof self ? self : {}, n = new e.Error().stack;
n && (e._sentryDebugIds = e._sentryDebugIds || {}, e._sentryDebugIds[n] = "ef426c5e-3b56-458b-93a2-51c839eaa84c", e._sentryDebugIdIdentifier = "sentry-dbid-ef426c5e-3b56-458b-93a2-51c839eaa84c");
} catch (e) {}
import { t as CountryCodes } from "./country-code-CX5KqMBr.js";
//#region src/utils/japanSupportUtils.ts
var isJapanLocalizationEnabled = (isFeatureEnabled = () => false, country) => {
return country === CountryCodes.Japan && isFeatureEnabled("EnableJapanLocalization");
};
//#endregion
export { isJapanLocalizationEnabled as t };