2020-03-31 13:47:59 +08:00

26 lines
753 B
JavaScript

import * as _dom from './dom';
import * as _env from './env';
import * as _events from './events';
import * as _func from './func';
import * as _log from './log';
import * as _object from './object';
import * as _string from './string';
import * as _support from './support';
import * as _focus from './focus';
import _guid from './guid';
import _KEYCODE from './keycode';
import * as _htmlId from './htmlId';
export const dom = _dom;
export const env = _env;
export const events = _events;
export const func = _func;
export const log = _log;
export const obj = _object;
export const str = _string;
export const support = _support;
export const focus = _focus;
export const guid = _guid;
export const KEYCODE = _KEYCODE;
export const htmlId = _htmlId;