-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathindex.js
28 lines (27 loc) · 859 Bytes
/
index.js
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
/* @flow */
import assignStyle from './assignStyle'
import camelCaseProperty from './camelCaseProperty'
import cssifyDeclaration from './cssifyDeclaration'
import cssifyObject from './cssifyObject'
import hyphenateProperty from './hyphenateProperty'
import isPrefixedProperty from './isPrefixedProperty'
import isPrefixedValue from './isPrefixedValue'
import isUnitlessProperty from './isUnitlessProperty'
import normalizeProperty from './normalizeProperty'
import resolveArrayValue from './resolveArrayValue'
import unprefixProperty from './unprefixProperty'
import unprefixValue from './unprefixValue'
export default {
assignStyle,
camelCaseProperty,
cssifyDeclaration,
cssifyObject,
hyphenateProperty,
isPrefixedProperty,
isPrefixedValue,
isUnitlessProperty,
normalizeProperty,
resolveArrayValue,
unprefixProperty,
unprefixValue
}