UNPKG

hosty

Version:

A code based opinionated way to self-host and manage web apps.

7 lines 249 B
export function block(name, attrs, tasks) { const state = { name, ...attrs, block: tasks || [] }; const add = (...tasks) => state.block.push(...tasks); const get = () => state; return { add, get }; } //# sourceMappingURL=block.js.map