UNPKG

343 BJavaScriptView Raw
1
2import {
3 version
4} from '../package.json'
5
6import * as whenx from './whenx'
7import * as thenx from './thenx'
8
9var main= whenx
10// console.info(main)
11main.whenx= whenx
12main.thenx= thenx
13main._version_= version
14
15/**
16 * @desc
17 * @module Object
18 * @return {object}
19 * @member {function} whenx
20 * @member {function} thenx
21 */
22export default main