mirror of
https://github.com/Rushilwiz/spaceout.git
synced 2025-04-21 20:09:50 -04:00
43 lines
1.0 KiB
Markdown
43 lines
1.0 KiB
Markdown
[](https://travis-ci.org/cssinjs/css-vendor) [](https://greenkeeper.io/)
|
|
|
|
## CSS vendor prefix detection and property feature testing.
|
|
|
|
### Vendor prefixes
|
|
|
|
```javascript
|
|
console.log(cssVendor.prefix.js) // e.g. WebkitTransform
|
|
|
|
console.log(cssVendor.prefix.css) // e.g. -webkit-transform
|
|
```
|
|
|
|
### Property support feature test
|
|
|
|
`cssVendor.supportedProperty(prop)`
|
|
|
|
Test if property is supported, returns false if not. Returns string if supported. May add a vendor prefix if needed.
|
|
|
|
```javascript
|
|
console.log(cssVendor.supportedProperty('animation')) // e.g. -webkit-animation
|
|
```
|
|
|
|
### Value support feature test
|
|
|
|
`cssVendor.supportedValue(prop, value)`
|
|
|
|
Test if value is supported, returns false if not. Returns string if supported. May add a vendor prefix if needed.
|
|
|
|
```javascript
|
|
console.log(cssVendor.supportedValue('display', 'flex')) // e.g. -webkit-flex
|
|
```
|
|
|
|
## Run tests
|
|
|
|
```bash
|
|
yarn
|
|
yarn test
|
|
```
|
|
|
|
## License
|
|
|
|
MIT
|