UNPKG

bridebook-ui-library

Version:
21 lines (18 loc) 437 B
'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); var inputValueUtil = exports.inputValueUtil = function inputValueUtil(input) { var type = ''; if (input instanceof HTMLInputElement) { type = input.getAttribute('type'); } switch (type) { case 'checkbox': case 'radio': return input.checked; default: return input.value; } }; //# sourceMappingURL=inputValueUtil.js.map