UNPKG

carbon-form

Version:

Forms to be used with the CarbonJS Framework or standalone

18 lines (12 loc) 304 B
/** * @Author: Amir Ahmetovic <choxnox> * @License: MIT */ var Element = require("../element"); var util = require("util"); function Hidden(name, options) { Element.call(this, name, options); this._htmlType = "hidden"; } util.inherits(Hidden, Element); module.exports = exports = Hidden;