mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-03 15:07:42 +02:00
18 lines
204 B
JavaScript
18 lines
204 B
JavaScript
module.exports = class ArgumentType {
|
|
constructor(id) {
|
|
this.id = id.toLowerCase();
|
|
}
|
|
|
|
validate(val) {
|
|
return Boolean(val);
|
|
}
|
|
|
|
parse(val) {
|
|
return val;
|
|
}
|
|
|
|
isEmpty(val) {
|
|
return !val;
|
|
}
|
|
};
|