Skip to content

Commit 935cc59

Browse files
author
rofrischmann
committed
1.0.0 release
1 parent c9bd422 commit 935cc59

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ script:
55
- npm run check
66
addons:
77
code_climate:
8-
repo_token: 923b8eea8dc288ced3fef24a6a878b84fb21af9f8e3332881460c963735e4590
8+
repo_token: 354c5092a67b6e59c6e0a0081e306ab5934cf4e8860332c56d93538966809780
99
after_script:
1010
- codeclimate-test-reporter < coverage/lcov.info
1111
notifications:

README.md

+6
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,8 @@ console.log(isUnitlessProperty('lineHeight'))
100100
// => true
101101
```
102102

103+
------
104+
103105
### `normalizeProperty(property)`
104106
Normalizes the `property` by unprefixing **and** camelCasing it.
105107
> Uses the [`camelCaseProperty`](#camelcasepropertyproperty) and [`unprefixProperty`](#unprefixpropertyproperty)-methods.
@@ -111,6 +113,8 @@ console.log(normalizeProperty('-webkit-transition-delay'))
111113
// => 'transitionDelay'
112114
```
113115

116+
------
117+
114118
### `unprefixProperty(property)`
115119
Removes the vendor prefix (if set) from the `property`.
116120

@@ -124,6 +128,8 @@ console.log(unprefixProperty('transitionDelay'))
124128
// => 'transitionDelay'
125129
```
126130

131+
------
132+
127133
### `unprefixValue(value)`
128134
Removes all vendor prefixes (if any) from the `value`.
129135

0 commit comments

Comments
 (0)