Source

dom/autoGrowTextArea.js

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
/**
 * Auto-grow textarea according to content size
 * Reference: https://stackoverflow.com/questions/17772260/textarea-auto-height
 * @category dom
 * @module autoGrowTextArea
 */
var autoGrowTextArea = function (el) {
    el.style.height = '0px';
    el.style.height = "".concat(el.scrollHeight + 1, "px");
    return el;
};
exports.default = autoGrowTextArea;