UNPKG

@chatui/core

Version:

The React library for Chatbot UI

12 lines (11 loc) 299 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = countLines; function countLines(el) { var styles = window.getComputedStyle(el, null); var lh = parseInt(styles.lineHeight, 10); var h = parseInt(styles.height, 10); return Math.round(h / lh); }