UNPKG

bootstrap-invoice

Version:

Invoices Templates built with Bootstrap 5. Various examples like Simple invoice, company invoice, invoice with images and many more.

17 lines (14 loc) 298 B
/* eslint-disable */ export function get(element) { return getComputedStyle(element); } export function set(element, obj) { for (const key in obj) { let val = obj[key]; if (typeof val === 'number') { val = `${val}px`; } element.style[key] = val; } return element; }