You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
302 B
11 lines
302 B
2 years ago
|
import rules from '../rule/index.js';
|
||
|
|
||
|
function required(rule, value, callback, source, options) {
|
||
|
const errors = [];
|
||
|
const type = Array.isArray(value) ? 'array' : typeof value;
|
||
|
rules.required(rule, value, source, errors, options, type);
|
||
|
callback(errors);
|
||
|
}
|
||
|
|
||
|
export default required;
|