| Current Path : /var/www/html/learn/node_modules/@ckeditor/ckeditor5-utils/src/dom/ |
| Current File : /var/www/html/learn/node_modules/@ckeditor/ckeditor5-utils/src/dom/getdatafromelement.js |
/**
* @license Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved.
* For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
*/
/* globals HTMLTextAreaElement */
/**
* @module utils/dom/getdatafromelement
*/
/**
* Gets data from a given source element.
*
* @param {HTMLElement} el The element from which the data will be retrieved.
* @returns {String} The data string.
*/
export default function getDataFromElement( el ) {
if ( el instanceof HTMLTextAreaElement ) {
return el.value;
}
return el.innerHTML;
}