forked from quasarframework/quasar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathutils.js
More file actions
34 lines (33 loc) · 756 Bytes
/
utils.js
File metadata and controls
34 lines (33 loc) · 756 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import animate from './utils/animate'
import clone from './utils/clone'
import * as colors from './utils/colors'
import debounce from './utils/debounce'
import * as dom from './utils/dom'
import * as event from './utils/event'
import extend from './utils/extend'
import filter from './utils/filter'
import * as format from './utils/format'
import openURL from './utils/open-url'
import * as popup from './utils/popup'
import * as scrollbar from './utils/scrollbar'
import * as store from './utils/store'
import throttle from './utils/throttle'
import uid from './utils/uid'
export default {
animate,
clone,
colors,
debounce,
dom,
event,
extend,
filter,
format,
noop () {},
openURL,
popup,
scrollbar,
store,
throttle,
uid
}