KrispSDK.isSupported()
Checks if the current browser supports the Krisp SDK.
Returns: boolean - True if supported, false otherwise
Example:
if (!KrispSDK.isSupported()) {
console.error('KrispSDK is not supported in this browser');
return;
}The JS SDK is currently available for Chrome, Firefox, and Safari version v.17.4.1 and above. Therefore, before connecting the Krisp SDK node to your nodes, make sure it's supported for the browser to not block the user's flow. You can provide a message to notify users that the SDK is not supported on their current browser and recommend they switch to a supported browser to ensure a seamless experience.
Updated about 20 hours ago
