Stopping sending literal errors
Errors now must be of "Error" type. Rule added in eslint.
This commit is contained in:
parent
88509916a8
commit
ab0f5e9837
19 changed files with 31 additions and 28 deletions
|
@ -62,7 +62,7 @@ function hsv_to_rgb(hue: number, saturation: number, brightness: number): { r: n
|
|||
b = q;
|
||||
break;
|
||||
default:
|
||||
throw "h_i cannot be " + h_i;
|
||||
throw new Error("h_i cannot be " + h_i);
|
||||
}
|
||||
return {
|
||||
r,
|
||||
|
|
|
@ -22,7 +22,7 @@ export function getNavigatorType(): NavigatorType {
|
|||
} else if (window.navigator.userAgent.includes("Safari")) {
|
||||
return NavigatorType.safari;
|
||||
}
|
||||
throw "Couldn't detect navigator type";
|
||||
throw new Error("Couldn't detect navigator type");
|
||||
}
|
||||
export function isAndroid(): boolean {
|
||||
return window.navigator.userAgent.includes("Android");
|
||||
|
|
|
@ -123,7 +123,7 @@ export class SimplePeer {
|
|||
peerConnection.destroy();
|
||||
const peerConnexionDeleted = this.PeerConnectionArray.delete(user.userId);
|
||||
if (!peerConnexionDeleted) {
|
||||
throw "Error to delete peer connection";
|
||||
throw new Error("Error to delete peer connection");
|
||||
}
|
||||
//return this.createPeerConnection(user, localStream);
|
||||
} else {
|
||||
|
@ -177,7 +177,7 @@ export class SimplePeer {
|
|||
peerConnection.destroy();
|
||||
const peerConnexionDeleted = this.PeerScreenSharingConnectionArray.delete(user.userId);
|
||||
if (!peerConnexionDeleted) {
|
||||
throw "Error to delete peer connection";
|
||||
throw new Error("Error to delete peer connection");
|
||||
}
|
||||
this.createPeerConnection(user);
|
||||
} else {
|
||||
|
@ -229,7 +229,7 @@ export class SimplePeer {
|
|||
|
||||
const userIndex = this.Users.findIndex((user) => user.userId === userId);
|
||||
if (userIndex < 0) {
|
||||
throw "Couldn't delete user";
|
||||
throw new Error("Couldn't delete user");
|
||||
} else {
|
||||
this.Users.splice(userIndex, 1);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue