mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-07-13 03:27:39 +03:00
new Error() to Error()
This commit is contained in:
parent
4303ee1908
commit
14bee5d3bd
7 changed files with 12 additions and 12 deletions
|
|
@ -211,7 +211,7 @@ export const
|
||||||
script.remove();
|
script.remove();
|
||||||
resolve();
|
resolve();
|
||||||
};
|
};
|
||||||
script.onerror = () => reject(new Error('Language '+language+' failed'));
|
script.onerror = () => reject(Error('Language '+language+' failed'));
|
||||||
script.src = langLink(language, admin);
|
script.src = langLink(language, admin);
|
||||||
// script.async = true;
|
// script.async = true;
|
||||||
doc.head.append(script);
|
doc.head.append(script);
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,7 @@ export class JCard {
|
||||||
if (input) {
|
if (input) {
|
||||||
// read from jCard
|
// read from jCard
|
||||||
if (typeof input !== 'object') {
|
if (typeof input !== 'object') {
|
||||||
throw new Error('error reading vcard')
|
throw Error('error reading vcard')
|
||||||
}
|
}
|
||||||
this.parseFromJCard(input)
|
this.parseFromJCard(input)
|
||||||
}
|
}
|
||||||
|
|
@ -87,7 +87,7 @@ export class JCard {
|
||||||
arg = new VCardProperty(String(arg), value, params, type);
|
arg = new VCardProperty(String(arg), value, params, type);
|
||||||
}
|
}
|
||||||
if (!(arg instanceof VCardProperty)) {
|
if (!(arg instanceof VCardProperty)) {
|
||||||
throw new Error('invalid argument of VCard.set(), expects string arguments or a VCardProperty');
|
throw Error('invalid argument of VCard.set(), expects string arguments or a VCardProperty');
|
||||||
}
|
}
|
||||||
let field = arg.getField();
|
let field = arg.getField();
|
||||||
this.props.set(field, [arg]);
|
this.props.set(field, [arg]);
|
||||||
|
|
@ -101,7 +101,7 @@ export class JCard {
|
||||||
arg = new VCardProperty(String(arg), value, params, type);
|
arg = new VCardProperty(String(arg), value, params, type);
|
||||||
}
|
}
|
||||||
if (!(arg instanceof VCardProperty)) {
|
if (!(arg instanceof VCardProperty)) {
|
||||||
throw new Error('invalid argument of VCard.add(), expects string arguments or a VCardProperty');
|
throw Error('invalid argument of VCard.add(), expects string arguments or a VCardProperty');
|
||||||
}
|
}
|
||||||
// VCardProperty arguments
|
// VCardProperty arguments
|
||||||
let field = arg.getField();
|
let field = arg.getField();
|
||||||
|
|
@ -125,14 +125,14 @@ export class JCard {
|
||||||
else if (arg instanceof VCardProperty) {
|
else if (arg instanceof VCardProperty) {
|
||||||
let propArray = this.props.get(arg.getField());
|
let propArray = this.props.get(arg.getField());
|
||||||
if (!(propArray === null || propArray === void 0 ? void 0 : propArray.includes(arg)))
|
if (!(propArray === null || propArray === void 0 ? void 0 : propArray.includes(arg)))
|
||||||
throw new Error("Attempted to remove VCardProperty VCard does not have: ".concat(arg));
|
throw Error("Attempted to remove VCardProperty VCard does not have: ".concat(arg));
|
||||||
propArray.splice(propArray.indexOf(arg), 1);
|
propArray.splice(propArray.indexOf(arg), 1);
|
||||||
if (propArray.length === 0)
|
if (propArray.length === 0)
|
||||||
this.props.delete(arg.getField());
|
this.props.delete(arg.getField());
|
||||||
}
|
}
|
||||||
// incorrect arguments
|
// incorrect arguments
|
||||||
else
|
else
|
||||||
throw new Error('invalid argument of VCard.remove(), expects ' +
|
throw Error('invalid argument of VCard.remove(), expects ' +
|
||||||
'string and optional param filter or a VCardProperty');
|
'string and optional param filter or a VCardProperty');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -202,7 +202,7 @@ export class JCard {
|
||||||
parseFullName(options) {
|
parseFullName(options) {
|
||||||
let n = this.getOne('n');
|
let n = this.getOne('n');
|
||||||
if (n === undefined) {
|
if (n === undefined) {
|
||||||
throw new Error('\'fn\' VCardProperty not present in card, cannot parse full name');
|
throw Error('\'fn\' VCardProperty not present in card, cannot parse full name');
|
||||||
}
|
}
|
||||||
let fnString = '';
|
let fnString = '';
|
||||||
// Position in n -> position in fn
|
// Position in n -> position in fn
|
||||||
|
|
|
||||||
|
|
@ -55,7 +55,7 @@ export class VCardProperty {
|
||||||
}
|
}
|
||||||
// invalid property
|
// invalid property
|
||||||
else {
|
else {
|
||||||
throw new Error('invalid Property constructor');
|
throw Error('invalid Property constructor');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
2
dev/External/ko.js
vendored
2
dev/External/ko.js
vendored
|
|
@ -107,7 +107,7 @@ Object.assign(ko.bindingHandlers, {
|
||||||
const command = fValueAccessor();
|
const command = fValueAccessor();
|
||||||
|
|
||||||
if (!command || !command.canExecute) {
|
if (!command || !command.canExecute) {
|
||||||
throw new Error('Value should be a command');
|
throw Error('Value should be a command');
|
||||||
}
|
}
|
||||||
|
|
||||||
ko.bindingHandlers['FORM'==element.nodeName ? 'submit' : 'click'].init(
|
ko.bindingHandlers['FORM'==element.nodeName ? 'submit' : 'click'].init(
|
||||||
|
|
|
||||||
|
|
@ -27,7 +27,7 @@ export class AbstractModel {
|
||||||
constructor() {
|
constructor() {
|
||||||
/*
|
/*
|
||||||
if (new.target === AbstractModel) {
|
if (new.target === AbstractModel) {
|
||||||
throw new Error("Can't instantiate AbstractModel!");
|
throw Error("Can't instantiate AbstractModel!");
|
||||||
}
|
}
|
||||||
*/
|
*/
|
||||||
Object.defineProperty(this, 'disposables', {value: []});
|
Object.defineProperty(this, 'disposables', {value: []});
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@ export class AbstractCollectionModel extends Array
|
||||||
constructor() {
|
constructor() {
|
||||||
/*
|
/*
|
||||||
if (new.target === AbstractCollectionModel) {
|
if (new.target === AbstractCollectionModel) {
|
||||||
throw new Error("Can't instantiate AbstractCollectionModel!");
|
throw Error("Can't instantiate AbstractCollectionModel!");
|
||||||
}
|
}
|
||||||
*/
|
*/
|
||||||
super();
|
super();
|
||||||
|
|
|
||||||
|
|
@ -22,7 +22,7 @@ export class AbstractModel {
|
||||||
constructor() {
|
constructor() {
|
||||||
/*
|
/*
|
||||||
if (new.target === AbstractModel) {
|
if (new.target === AbstractModel) {
|
||||||
throw new Error("Can't instantiate AbstractModel!");
|
throw Error("Can't instantiate AbstractModel!");
|
||||||
}
|
}
|
||||||
*/
|
*/
|
||||||
Object.defineProperty(this, 'disposables', {value: []});
|
Object.defineProperty(this, 'disposables', {value: []});
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue