tmpfs / async-validate

Asynchronous type validation for node and the browser
Other
314 stars 45 forks source link

Docs: Usage plugin section is refering to local path #44

Closed ghost closed 8 years ago

ghost commented 8 years ago

Following code should be

Schema.plugin([
    require('../plugin/object'),
    require('../plugin/string'),
    require('../plugin/util')
]);
Schema.plugin([
    require('async-validate/plugin/object'),
    require('async-validate/plugin/string'),
    require('async-validate/plugin/util')
]);