2017-07-26 21:46:30 +00:00
|
|
|
/**
|
|
|
|
* Created by Kylart on 26/07/2017.
|
|
|
|
*/
|
|
|
|
|
2017-09-16 12:29:38 +00:00
|
|
|
export {default as axios} from 'axios'
|
2017-09-19 07:23:46 +00:00
|
|
|
export {default as moment} from 'moment'
|
2017-11-06 04:11:26 +00:00
|
|
|
export {default as _} from 'lodash'
|
2017-09-16 12:29:38 +00:00
|
|
|
|
2017-09-25 05:28:48 +00:00
|
|
|
export const log = (...messages) => {
|
2017-09-26 09:39:28 +00:00
|
|
|
console.log(`[${(new Date()).toLocaleTimeString()}]:`, ...messages)
|
2017-07-26 21:46:30 +00:00
|
|
|
}
|
2017-09-16 12:29:38 +00:00
|
|
|
|
|
|
|
export const isRoot = {
|
|
|
|
root: true
|
|
|
|
}
|