UNPKG

mahmud-js-tools

Version:

一个简单而实用的JavaScript工具库,包含多种常用的工具函数。

13 lines (11 loc) 297 B
import VirtualScroll from './test.js'; import * as utils from './utils.js'; // Export all components export { VirtualScroll, utils }; // If in browser environment, add to global object if (typeof window !== 'undefined') { window.JsBooster = { VirtualScroll, ...utils }; }