Security upgrades

This commit is contained in:
2020-07-15 19:54:48 +02:00
parent 59cc6c54cd
commit ad8ed283d2
3164 changed files with 408897 additions and 28 deletions

42
node_modules/css-vendor/readme.md generated vendored Normal file
View File

@@ -0,0 +1,42 @@
[![Build Status](https://travis-ci.org/cssinjs/css-vendor.svg?branch=master)](https://travis-ci.org/cssinjs/css-vendor) [![Greenkeeper badge](https://badges.greenkeeper.io/cssinjs/css-vendor.svg)](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