You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 26, 2024. It is now read-only.
In _tryDefineProperty if JSON.stringify(desc) fails, null.toString is calling. I got this problem in IE11, when I commented this descJson = descJson.toString(); my app worked
var descJson = null;
try {
descJson = JSON.stringify(desc);
}
catch (error) {
descJson = descJson.toString();
}
console.log("Attempting to configure '" + prop + "' with descriptor '" + descJson + "' on object '" + obj + "' and got error, giving up: " + error);
}```
In _tryDefineProperty if JSON.stringify(desc) fails, null.toString is calling. I got this problem in IE11, when I commented this descJson = descJson.toString(); my app worked