2018-02-12 12:24:53 +00:00
|
|
|
const FloatControl = require('./float');
|
|
|
|
|
|
|
|
class IntControl extends FloatControl {
|
|
|
|
parse(value) {
|
|
|
|
value = parseInt(value);
|
2018-03-05 16:45:21 +00:00
|
|
|
return isNaN(value) ? 0 : value;
|
2018-02-12 12:24:53 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = IntControl;
|