Fix method signature

Signed-off-by: Fabio José <fabiojose@gmail.com>
This commit is contained in:
Fabio José 2019-10-29 10:37:10 -03:00
parent 9996f5a84c
commit 185f2da789
1 changed files with 2 additions and 2 deletions

View File

@ -71,8 +71,8 @@ Spec1.prototype.id = function(_id){
return this;
};
Spec1.prototype.getId => {
Spec1.prototype.getId = () => {
return this.payload["id"];
}
};
module.exports = Spec1;