Skip to content

Instantly share code, notes, and snippets.

View interaminense's full-sized avatar
🖐️
Hi there!

Adriano Interaminense interaminense

🖐️
Hi there!
View GitHub Profile
@interaminense
interaminense / utils.js
Last active July 7, 2021 20:37
Utils for JS
/**
* Util Create DOM using literal templates
*/
const createElement = tmpl => new DOMParser().parseFromString(tmpl, 'text/html').body.firstChild;
/**
* Util Object Builder
*/
const builder = (newList = []) => {
let list = newList;