-
Notifications
You must be signed in to change notification settings - Fork 1
/
errors.js
47 lines (36 loc) · 893 Bytes
/
errors.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
var Errors = function() {
this.errors = {};
};
Errors.prototype = {
constructor: Errors,
add: function(attribute, message) {
if (!this.has(attribute)) {
this.errors[attribute] = [];
}
if (this.errors[attribute].indexOf(message) === -1) {
this.errors[attribute].push(message);
}
},
get: function(attribute) {
if (this.has(attribute)) {
return this.errors[attribute];
}
return [];
},
first: function(attribute) {
if (this.has(attribute)) {
return this.errors[attribute][0];
}
return false;
},
all: function() {
return this.errors;
},
has: function(attribute) {
if (this.errors.hasOwnProperty(attribute)) {
return true;
}
return false;
}
};
module.exports = Errors;