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
37 lines (35 loc) · 795 Bytes
/
utils.js
File metadata and controls
37 lines (35 loc) · 795 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
35
36
37
import * as animate from './utils/animate'
import clone from './utils/clone'
import * as colors from './utils/colors'
import * as date from './utils/date'
import { debounce, frameDebounce } from './utils/debounce'
import * as dom from './utils/dom'
import * as easing from './utils/easing'
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 scroll from './utils/scroll'
import throttle from './utils/throttle'
import uid from './utils/uid'
function noop () {}
export {
animate,
clone,
colors,
date,
debounce,
frameDebounce,
dom,
easing,
event,
extend,
filter,
format,
noop,
openURL,
scroll,
throttle,
uid
}