UNPKG

@cainiaofe/cn-utils

Version:

菜鸟前端基础工具库

13 lines (12 loc) 321 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.plugin = exports.extend = void 0; var pluginCache = {}; function extend(plg) { pluginCache[plg.name] = plg; } exports.extend = extend; function plugin(name) { return pluginCache[name] || window[name]; } exports.plugin = plugin;