1.0.1 • Published 3 months ago

fragmentbuilder v1.0.1

Weekly downloads
-
License
MIT
Repository
-
Last release
3 months ago

Javascript object to HTML fragment

This allows you to create a HTML fragment from a javascript object.

example

const obj = {
  	tag: 'div',
  	text: 'Hello, World!',
  	attr: {
	 		class: 'container',
	 		id: 'main'
 	},
		childs: [
		{
			tag: 'h1',
			text: 'Hello, World!'
		},
		]
}
const fragment = fragmentBuilder(obj);
1.0.1

3 months ago

1.0.0

3 months ago