[ICO]NameLast modifiedSizeDescription
[PARENTDIR]Parent Directory  -  
[DIR]dist/2025-10-29 15:57 -  
[   ]rollup.config.js2025-10-29 15:57 269  
[   ]package.json2025-10-29 15:57 771  
[   ]index.js2025-10-29 15:57 951  
[TXT]index.d.ts2025-10-29 15:57 280  
[TXT]README.md2025-10-29 15:57 764 38d15e7 removed strapi.query from api controllers to repair migration on dev server? [كارل مبارك]
[   ]LICENSE2025-10-29 15:57 1.1K 
# CRELT

Tiny DOM-element creation utility. Exports a single (default) value,
which is a function that you call with:

 - A tag name string or DOM element.

 - Optionally an attribute object mapping names to values. When the
   values are strings, they are added to the element with
   `setAttribute`. When they have another type, they are assigned as
   regular properties (mostly useful for event handlers via `onclick`
   and such). When an attribute's value is null or undefined, it is
   not assigned.

 - Any number of children, which may be null (ignored), strings (added
   as text nodes), DOM nodes (added), or arrays (each element is added
   separately).

The function returns a DOM element.

## License

This software is licensed under an MIT license.