UNPKG

orvex

Version:

A lightweight TypeScript library to create and manipulate HTML elements with ease.

7 lines (6 loc) 135 B
export function data(obj, key, val) { obj.dataset[key] = val; } export function getdata(obj, key) { return obj.dataset[key]; }