Skip to content

Commit f7ccb63

Browse files
committed
Lints and adds some spaces for better reading
1 parent acc8744 commit f7ccb63

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/Model.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,11 +135,11 @@ function Model(opts) {
135135
// Standardize validations
136136
for (var k in opts.validations) {
137137
if (typeof opts.validations[k] == 'function') {
138-
opts.validations[k] = [opts.validations[k]]
138+
opts.validations[k] = [ opts.validations[k] ];
139139
}
140140
}
141141

142-
for (var k in opts.properties) {
142+
for (k in opts.properties) {
143143
opts.properties[k] = Property.normalize(opts.properties[k], opts.settings);
144144

145145
if (opts.properties[k].lazyload !== true) {

0 commit comments

Comments
 (0)