Create New Item
×
Item Type
File
Folder
Item Name
×
Search file in folder and subfolders...
File Manager
/
sommilito-bank2
/
splide-4.1.3
/
src
/
js
/
utils
/
dom
/
create
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
import { isString } from '../../type/type'; import { addClass } from '../addClass/addClass'; import { append } from '../append/append'; import { setAttribute } from '../setAttribute/setAttribute'; export function create<K extends keyof HTMLElementTagNameMap>( tag: K, attrs?: Record<string, string | number | boolean> | string, parent?: HTMLElement ): HTMLElementTagNameMap[ K ]; export function create( tag: string, attrs?: Record<string, string | number | boolean> | string, parent?: HTMLElement ): HTMLElement; /** * Creates a HTML element. * * @param tag - A tag name. * @param attrs - Optional. An object with attributes to apply the created element to, or a string with classes. * @param parent - Optional. A parent element where the created element is appended. */ export function create<K extends keyof HTMLElementTagNameMap>( tag: K, attrs?: Record<string, string | number | boolean> | string, parent?: HTMLElement ): HTMLElementTagNameMap[ K ] { const elm = document.createElement( tag ); if ( attrs ) { isString( attrs ) ? addClass( elm, attrs ) : setAttribute( elm, attrs ); } parent && append( parent, elm ); return elm; }