You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

lib-util.js 193B

1234567891011121314
  1. /**
  2. * @Author: Caven
  3. * @Date: 2022-08-11 18:52:22
  4. */
  5. const cache = {}
  6. export function registerLib(name, lib) {
  7. cache[name] = lib
  8. }
  9. export function getlib(name) {
  10. return cache[name]
  11. }