Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 
rpm-mcarman b9f7ec4306 First Commit 4 anos atrás
..
dist First Commit 4 anos atrás
lib First Commit 4 anos atrás
.babelrc First Commit 4 anos atrás
.eslintrc First Commit 4 anos atrás
LICENSE First Commit 4 anos atrás
changelog.md First Commit 4 anos atrás
karma.conf.js First Commit 4 anos atrás
package.json First Commit 4 anos atrás
readme.md First Commit 4 anos atrás
tests.html First Commit 4 anos atrás
tests.webpack.js First Commit 4 anos atrás
webpack.config.js First Commit 4 anos atrás

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