Some coding style fixes
This commit is contained in:
parent
9370a96a2b
commit
dd1e54ffec
|
@ -16,10 +16,11 @@ Validatable.validate = function(){
|
||||||
if (typeof args[args.length - 1] === 'function'){
|
if (typeof args[args.length - 1] === 'function'){
|
||||||
valFn = args.pop();
|
valFn = args.pop();
|
||||||
}
|
}
|
||||||
wrapperFn = function(attr, conf, err){ return valFn.call( this, err) };
|
wrapperFn = function customValidator(attr, conf, err) {
|
||||||
|
return valFn.call(this, err);
|
||||||
|
};
|
||||||
configure(this, wrapperFn, args)
|
configure(this, wrapperFn, args)
|
||||||
|
};
|
||||||
}
|
|
||||||
|
|
||||||
// implementation of validators
|
// implementation of validators
|
||||||
var validators = {
|
var validators = {
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
"author": "Anatoliy Chakkaev",
|
"author": "Anatoliy Chakkaev",
|
||||||
"name": "jugglingdb",
|
"name": "jugglingdb",
|
||||||
"description": "ORM for every database: redis, mysql, neo4j, mongodb",
|
"description": "ORM for every database: redis, mysql, neo4j, mongodb",
|
||||||
"version": "0.0.6",
|
"version": "0.0.7",
|
||||||
"repository": {
|
"repository": {
|
||||||
"url": "https://github.com/1602/jugglingdb"
|
"url": "https://github.com/1602/jugglingdb"
|
||||||
},
|
},
|
||||||
|
|
|
@ -77,7 +77,6 @@ it 'should allow to skip validations', (test) ->
|
||||||
|
|
||||||
test.done()
|
test.done()
|
||||||
|
|
||||||
|
|
||||||
it 'should throw error on save if required', (test) ->
|
it 'should throw error on save if required', (test) ->
|
||||||
user = new User
|
user = new User
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue