84fcb913c1 abc il y a 3 ans frame42.jpg 84fcb913c1 abc il y a 3 ans frame43.jpg 84fcb913c1 abc il y a 3 ans frame44.jpg 84fcb913c1 abc il y a 3 ans frame45.jpg 84fcb913c1 abc il y a 3 ans frame46.jpg 84fcb913c1 abc il y a 3 ans frame47.jpg 84fcb913c1 abc il y a 3 ans frame48.jpg 84fcb913c1 abc il y a 3 ans frame49.jpg 84fcb913c1 abc il y a 3 ans frame5.jpg 84fcb913c1 abc il y a 3 ans frame50.jpg 84fcb913c1 abc il y a 3 ans frame51.jpg 84fcb913c1 abc il y a 3 ans frame52.jpg 84fcb913c1 abc il y a 3 ans frame53.jpg 84fcb913c1 abc il y a 3 ans frame54.jpg 84fcb913c1 abc il y a 3 ans frame55.jpg 84fcb913c1 abc il y a 3 ans frame56.jpg 84fcb913c1 abc il y a 3 ans frame57.jpg 84fcb913c1 abc il y a 3 ans frame58.jpg 84fcb913c1 abc il y a 3 ans frame59.jpg 84fcb913c1 abc il y a 3 ans frame6.jpg 84fcb913c1 abc il y a 3 ans frame60.jpg 84fcb913c1 abc il y a 3 ans frame61.jpg 84fcb913c1 abc il y a 3 ans frame62.jpg 84fcb913c1 abc il y a 3 ans frame63.jpg 84fcb913c1 abc il y a 3 ans frame64.jpg 84fcb913c1 abc il y a 3 ans frame65.jpg 84fcb913c1 abc il y a 3 ans frame66.jpg 84fcb913c1 abc il y a 3 ans frame67.jpg 84fcb913c1 abc il y a 3 ans frame68.jpg 84fcb913c1 abc il y a 3 ans frame69.jpg 84fcb913c1 abc il y a 3 ans frame7.jpg 84fcb913c1 abc il y a 3 ans frame70.jpg 84fcb913c1 abc il y a 3 ans frame71.jpg 84fcb913c1 abc il y a 3 ans frame72.jpg 84fcb913c1 abc il y a 3 ans frame73.jpg 84fcb913c1 abc il y a 3 ans frame74.jpg 84fcb913c1 abc il y a 3 ans frame75.jpg 84fcb913c1 abc il y a 3 ans frame76.jpg 84fcb913c1 abc il y a 3 ans frame77.jpg 84fcb913c1 abc il y a 3 ans frame78.jpg 84fcb913c1 abc il y a 3 ans frame79.jpg 84fcb913c1 abc il y a 3 ans frame8.jpg 84fcb913c1 abc il y a 3 ans frame80.jpg 84fcb913c1 abc il y a 3 ans frame81.jpg 84fcb913c1 abc il y a 3 ans frame82.jpg 84fcb913c1 abc il y a 3 ans frame83.jpg 84fcb913c1 abc il y a 3 ans frame84.jpg 84fcb913c1 abc il y a 3 ans frame85.jpg 84fcb913c1 abc il y a 3 ans frame86.jpg 84fcb913c1 abc il y a 3 ans frame87.jpg 84fcb913c1 abc il y a 3 ans frame88.jpg 84fcb913c1 abc il y a 3 ans frame89.jpg 84fcb913c1 abc il y a 3 ans frame9.jpg 84fcb913c1 abc il y a 3 ans frame90.jpg 84fcb913c1 abc il y a 3 ans frame91.jpg 84fcb913c1 abc il y a 3 ans frame92.jpg 84fcb913c1 abc il y a 3 ans frame93.jpg 84fcb913c1 abc il y a 3 ans frame94.jpg 84fcb913c1 abc il y a 3 ans frame95.jpg 84fcb913c1 abc il y a 3 ans frame96.jpg 84fcb913c1 abc il y a 3 ans frame97.jpg 84fcb913c1 abc il y a 3 ans frame98.jpg 84fcb913c1 abc il y a 3 ans frame99.jpg 84fcb913c1 abc il y a 3 ans tmt/tiger_frontend - Gogs: Simplico Git Service

Нет описания

golf 77628cf8bf first comm лет назад: 3
..
dist 77628cf8bf first comm лет назад: 3
API.md 77628cf8bf first comm лет назад: 3
CHANGELOG.md 77628cf8bf first comm лет назад: 3
LICENSE-MIT 77628cf8bf first comm лет назад: 3
README.md 77628cf8bf first comm лет назад: 3
package.json 77628cf8bf first comm лет назад: 3
postcss-selector-parser.d.ts 77628cf8bf first comm лет назад: 3

README.md

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

const parser = require('postcss-selector-parser');
const transform = selectors => {
    selectors.walk(selector => {
        // do something with the selector
        console.log(String(selector))
    });
};

const transformed = parser(transform).processSync('h1, h2, h3');

To normalize selector whitespace:

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

Async support is provided through parser.process and will resolve a Promise with the resulting selector string.

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