library.js 253 B

1234567
  1. import { createLibrary } from '../stdlib';
  2. export const library = createLibrary();
  3. // @todo Warn if override existing key.
  4. export function register(key, component) {
  5. Object.assign(library, { [key]: component });
  6. }
  7. //# sourceMappingURL=library.js.map