Opal-Estate-Pro/node_modules/postcss-selector-parser
2019-09-13 11:27:52 +07:00
..
dist style Dashboard 2019-09-13 11:27:52 +07:00
API.md style Dashboard 2019-09-13 11:27:52 +07:00
CHANGELOG.md style Dashboard 2019-09-13 11:27:52 +07:00
LICENSE-MIT style Dashboard 2019-09-13 11:27:52 +07:00
package.json style Dashboard 2019-09-13 11:27:52 +07:00
README.md style Dashboard 2019-09-13 11:27:52 +07:00

postcss-selector-parser Build Status

Selector parser with built in methods for working with selector strings.

Install

With npm do:

npm install postcss-selector-parser

Quick Start

var parser = require('postcss-selector-parser');
var transform = function (selectors) {
    selectors.eachInside(function (selector) {
        // do something with the selector
        console.log(String(selector))
    });
};

var transformed = parser(transform).process('h1, h2, h3').result;

To normalize selector whitespace:

var parser = require('postcss-selector-parser');
var normalized = parser().process('h1, h2, h3', {lossless:false}).result;
// -> h1,h2,h3

API

Please see API.md.

Credits

  • Huge thanks to Andrey Sitnik (@ai) for work on PostCSS which helped accelerate this module's development.

License

MIT