File size: 481 Bytes
5d14125 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
import "./chunk-7ELT755Q.mjs";
// src/alternativePhoneCode.ts
var ALTERNATIVE_PHONE_CODE_PROVIDERS = [
{
channel: "whatsapp",
name: "WhatsApp"
}
];
var getAlternativePhoneCodeProviderData = (channel) => {
if (!channel) {
return null;
}
return ALTERNATIVE_PHONE_CODE_PROVIDERS.find((p) => p.channel === channel) || null;
};
export {
ALTERNATIVE_PHONE_CODE_PROVIDERS,
getAlternativePhoneCodeProviderData
};
//# sourceMappingURL=alternativePhoneCode.mjs.map |