mirror of
https://github.com/thangisme/notes.git
synced 2026-06-16 05:00:09 -04:00
Initial commit
This commit is contained in:
34
node_modules/normalize-selector/README.md
generated
vendored
Normal file
34
node_modules/normalize-selector/README.md
generated
vendored
Normal file
@@ -0,0 +1,34 @@
|
||||
# Normalize-Selector
|
||||
|
||||
Normalize CSS selectors.
|
||||
|
||||
Examples:
|
||||
|
||||
* `#foo>.bar` -> `#foo > .bar`
|
||||
* ` #foo > .bar ` -> `#foo > .bar`
|
||||
* `foo[ a = 'b' ]` -> `foo[a='b']`
|
||||
|
||||
## Tests
|
||||
|
||||
Run mocha tests on node.js with:
|
||||
|
||||
```
|
||||
npm test
|
||||
```
|
||||
|
||||
or:
|
||||
|
||||
```
|
||||
node ./test/mocha/node-suite.js
|
||||
```
|
||||
|
||||
## rawgithub
|
||||
|
||||
View the browser suite directly on
|
||||
[rawgithub](https://rawgithub.com/getify/normalize-selector/master/test/mocha/browser-suite.html)
|
||||
|
||||
## License
|
||||
|
||||
The code and all the documentation are released under the MIT license.
|
||||
|
||||
http://getify.mit-license.org/
|
||||
Reference in New Issue
Block a user