Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

README.md 985B

před 4 roky
123456789101112131415161718
  1. # cheerio-select [![NPM version](http://img.shields.io/npm/v/cheerio-select.svg)](https://npmjs.org/package/cheerio-select) [![Build Status](https://travis-ci.org/cheeriojs/cheerio-select.svg?branch=master)](http://travis-ci.org/cheeriojs/cheerio-select) [![Downloads](https://img.shields.io/npm/dm/cheerio-select.svg)](https://npmjs.org/package/cheerio-select) [![Coverage](https://coveralls.io/repos/cheeriojs/cheerio-select/badge.svg?branch=master)](https://coveralls.io/r/cheeriojs/cheerio-select)
  2. CSS selector engine supporting jQuery selectors, based on [`css-select`](https://github.com/fb55/css-select).
  3. Supports all jQuery positional pseudo-selectors:
  4. - `:first`
  5. - `:last`
  6. - `:eq`
  7. - `:nth`
  8. - `:gt`
  9. - `:lt`
  10. - `:even`
  11. - `:odd`
  12. - `:not(:positional)`, where `:positional` is any of the above.
  13. This library is a thin wrapper around [`css-select`](https://github.com/fb55/css-select).
  14. Only use this module if you will actually use jQuery positional selectors.