UNPKG

@codelet/core

Version:
13 lines (12 loc) 246 B
function use(plugin, ...options) { if (typeof plugin === 'function') { plugin(this, ...options); } else if (plugin.install) { plugin.install(this, ...options); } return this; } export const col = { use, };