1.0.0 • Published 7 years ago

postcss-camelize v1.0.0

Weekly downloads
1
License
MIT
Repository
github
Last release
7 years ago

PostCSS Camelize

Build Status Standard - JavaScript Style Guide

PostCSS plugin for camelizing strings;

.camelize(a-non-camelized-selector) {
    /* Input example */
}

.camelize(a-non-camelized-selector--with-modifier) {
    /* Input example */
}
.aNonCamelizedSelector {
  /* Output example */
}

.aNonCamelizedSelector--withModifier {
    /* Input example */
}

Installation

$ yarn add postcss-camelize --dev

Alternatively using npm:

$ npm install postcss-camelize --save-dev

Usage

postcss([ require('postcss-camelize') ])

License

MIT © Robin van der Vleuten