this is the line in IE11 console vendor.js (65816,1);
class AppConfigCredential {
constructor(credential, secret) {
this.credential = credential;
this.secret = secret;
}
Iam trying read the feature flags from azure appconfiguration from angular it's working fine for all the browsers except in IE11 i tried replacing polyfiles and by adding tsconfig-es5.app and changing in angular json as required but no use and calling function is.
enter code here
async GetFeatureToggleValue(key: any) {
const client = new AppConfigurationClient(this.AppconfigURL);;
return await client.getConfigurationSetting({ key:
".appconfig.featureflag/" + key }, { onlyIfChanged: true }); }