1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-03 01:39:24 +02:00
Oinktube/node_modules/crelt
2023-08-12 10:32:47 -03:00
..
dist npm update 2023-08-12 10:32:47 -03:00
index.d.ts Do not ignore node_modules 2022-06-30 12:23:35 -03:00
index.js npm update 2023-08-12 10:32:47 -03:00
LICENSE npm update 2023-08-12 10:32:47 -03:00
package.json npm update 2023-08-12 10:32:47 -03:00
README.md Do not ignore node_modules 2022-06-30 12:23:35 -03:00
rollup.config.js npm update 2023-08-12 10:32:47 -03:00

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.