You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
rpm-mcarman b9f7ec4306 First Commit пре 3 година
..
dist First Commit пре 3 година
lib First Commit пре 3 година
.babelrc First Commit пре 3 година
.eslintrc First Commit пре 3 година
LICENSE First Commit пре 3 година
changelog.md First Commit пре 3 година
karma.conf.js First Commit пре 3 година
package.json First Commit пре 3 година
readme.md First Commit пре 3 година
tests.html First Commit пре 3 година
tests.webpack.js First Commit пре 3 година
webpack.config.js First Commit пре 3 година

readme.md

JSS plugin that handles vendor prefixes in the browser

Gitter

This vendor prefixer knows which properties and values are supported in the current runtime and changes only whats required. The best thing is - you don’t need to download all of them. Also it is very fast, all checks are cached.

Make sure you read how to use plugins in general.

Example

const styles = {
  container: {
    transform: 'translateX(100px)'
  }
}

Compiles to:

.jss-0-0 {
  transform: -webkit-translateX(100px);
}

Issues

File a bug against cssinjs/jss prefixed with [jss-vendor-prefixer].

Run tests

npm i
npm run test

License

MIT