UNPKG

date-input-control

Version:

Capture dates using day, month and year components

6 lines (5 loc) 271 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.isInputFull = exports.isInputEmpty = void 0; exports.isInputEmpty = (input) => (input.value.length === 0); exports.isInputFull = (input) => (input.value.length >= input.maxLength);