@ryusei/code
Version:
<div align="center"> <a href="https://code.ryuseijs.com"> <img alt="RyuseiCode" src="https://code.ryuseijs.com/images/svg/logo.svg" width="70"> </a>
24 lines (19 loc) • 548 B
text/typescript
import { isUndefined } from '../../type/type';
export function html( elm: Element ): string;
export function html( elm: Element, html: string ): void;
/**
* Sets or gets HTML of the provided element.
*
* @param elm - A element to get or set HTML.
* @param html - Optional. HTML to set.
*/
export function html( elm: Element, html?: string ): string | void {
if ( elm ) {
if ( isUndefined( html ) ) {
return elm.innerHTML;
}
if ( elm.innerHTML !== html ) {
elm.innerHTML = html;
}
}
}