您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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. }