UNPKG

dtable-utils

Version:

dtable common utils

12 lines (10 loc) 310 B
/** * Get text from long-text to display. * @param {object} longText e.g. { text, ... } * @returns text from long-text, string */ var getLongtextDisplayString = function getLongtextDisplayString(longText) { if (!longText) return ''; return longText.text || ''; }; export { getLongtextDisplayString };