flow like the river
This commit is contained in:
commit
013fe673f3
42435 changed files with 5764238 additions and 0 deletions
21
BACK_BACK/node_modules/uncss/LICENSE.md
generated
vendored
Executable file
21
BACK_BACK/node_modules/uncss/LICENSE.md
generated
vendored
Executable file
|
|
@ -0,0 +1,21 @@
|
|||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2013 Giacomo Martino
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
||||
238
BACK_BACK/node_modules/uncss/README.md
generated
vendored
Executable file
238
BACK_BACK/node_modules/uncss/README.md
generated
vendored
Executable file
|
|
@ -0,0 +1,238 @@
|
|||
# UnCSS
|
||||
|
||||
[](https://www.npmjs.com/package/uncss)
|
||||
[](https://travis-ci.org/uncss/uncss)
|
||||
[](https://ci.appveyor.com/project/uncss/uncss/branch/master)
|
||||
[](https://coveralls.io/r/uncss/uncss?branch=master)
|
||||
[](https://david-dm.org/uncss/uncss)
|
||||
[](https://david-dm.org/uncss/uncss?type=dev)
|
||||
|
||||
UnCSS is a tool that removes unused CSS from your stylesheets.
|
||||
It works across multiple files and supports Javascript-injected CSS.
|
||||
|
||||
## How
|
||||
|
||||
The process by which UnCSS removes the unused rules is as follows:
|
||||
|
||||
1. The HTML files are loaded by [jsdom](https://github.com/tmpvar/jsdom) and JavaScript is executed.
|
||||
2. All the stylesheets are parsed by [PostCSS](https://github.com/postcss/postcss).
|
||||
3. `document.querySelector` filters out selectors that are not found in the HTML files.
|
||||
4. The remaining rules are converted back to CSS.
|
||||
|
||||
**Please note:**
|
||||
|
||||
- UnCSS cannot be run on non-HTML pages, such as templates or PHP files. If you need to run UnCSS against your templates, you should probably generate example HTML pages from your templates, and run uncss on those generated files; or run a live local dev server, and point uncss at that.
|
||||
- UnCSS only runs the Javascript that is run on page load. It does not (and cannot) handle Javascript that runs on user interactions like button clicks. You must use the `ignore` option to preserve classes that are added by Javascript on user interaction.
|
||||
|
||||
## Installation
|
||||
|
||||
```shell
|
||||
npm install -g uncss
|
||||
```
|
||||
|
||||
## Usage
|
||||
|
||||
### Online Server
|
||||
|
||||
- [https://uncss-online.com/](https://uncss-online.com/) - Unofficial server, very convenient for testing or one-off usage!
|
||||
|
||||
### Within Node.js
|
||||
|
||||
```js
|
||||
var uncss = require('uncss');
|
||||
|
||||
var files = ['my', 'array', 'of', 'HTML', 'files', 'or', 'http://urls.com'],
|
||||
options = {
|
||||
banner : false,
|
||||
csspath : '../public/css/',
|
||||
htmlroot : 'public',
|
||||
ignore : ['#added_at_runtime', /test\-[0-9]+/],
|
||||
ignoreSheets : [/fonts.googleapis/],
|
||||
inject : function(window) { window.document.querySelector('html').classList.add('no-csscalc', 'csscalc'); },
|
||||
jsdom : {
|
||||
userAgent: 'Mozilla/5.0 (iPhone; CPU iPhone OS 10_3 like Mac OS X)',
|
||||
},
|
||||
media : ['(min-width: 700px) handheld and (orientation: landscape)'],
|
||||
raw : 'h1 { color: green }',
|
||||
report : false,
|
||||
strictSSL : true,
|
||||
stylesheets : ['lib/bootstrap/dist/css/bootstrap.css', 'src/public/css/main.css'],
|
||||
timeout : 1000,
|
||||
uncssrc : '.uncssrc',
|
||||
userAgent : 'Mozilla/5.0 (iPhone; CPU iPhone OS 10_3 like Mac OS X)',
|
||||
};
|
||||
|
||||
uncss(files, options, function (error, output) {
|
||||
console.log(output);
|
||||
});
|
||||
|
||||
/* Look Ma, no options! */
|
||||
uncss(files, function (error, output) {
|
||||
console.log(output);
|
||||
});
|
||||
|
||||
/* Specifying raw HTML */
|
||||
var rawHtml = '...';
|
||||
|
||||
uncss(rawHtml, options, function (error, output) {
|
||||
console.log(output);
|
||||
});
|
||||
```
|
||||
|
||||
### At build-time
|
||||
|
||||
UnCSS can also be used in conjunction with other JavaScript build systems, such as [Grunt](https://github.com/gruntjs/grunt), [Broccoli](https://github.com/broccolijs/broccoli#readme) or [Gulp](https://github.com/gulpjs/gulp)!
|
||||
|
||||
- [grunt-uncss](https://github.com/uncss/grunt-uncss) – Thanks to [@addyosmani](https://github.com/addyosmani)
|
||||
- [gulp-uncss](https://github.com/ben-eb/gulp-uncss) – Thanks to [@ben-eb](https://github.com/ben-eb)
|
||||
- [broccoli-uncss](https://github.com/sindresorhus/broccoli-uncss) - Thanks to [@sindresorhus](https://github.com/sindresorhus)
|
||||
|
||||
### From the command line
|
||||
|
||||
```txt
|
||||
Usage: uncss [options] <file or URL, ...>
|
||||
e.g. uncss https://getbootstrap.com/docs/3.3/examples/jumbotron/ > stylesheet.css
|
||||
|
||||
Options:
|
||||
|
||||
-h, --help output usage information
|
||||
-V, --version output the version number
|
||||
-i, --ignore <selector, ...> Do not remove given selectors
|
||||
-m, --media <media_query, ...> Process additional media queries
|
||||
-C, --csspath <path> Relative path where the CSS files are located
|
||||
-s, --stylesheets <file, ...> Specify additional stylesheets to process
|
||||
-S, --ignoreSheets <selector, ...> Do not include specified stylesheets
|
||||
-r, --raw <string> Pass in a raw string of CSS
|
||||
-t, --timeout <milliseconds> Wait for JS evaluation
|
||||
-H, --htmlroot <folder> Absolute paths' root location
|
||||
-u, --uncssrc <file> Load these options from <file>
|
||||
-n, --noBanner Disable banner
|
||||
-a, --userAgent <string> Use a custom user agent string
|
||||
-I, --inject <file> Path to javascript file to be executed before uncss runs
|
||||
-o, --output <file> Path to write resulting CSS to
|
||||
```
|
||||
|
||||
**Note that you can pass both local file paths (which are processed by [glob](https://github.com/isaacs/node-glob)) and URLs to the program.**
|
||||
|
||||
- **banner** (boolean, default: `true`): Whether a banner should be prepended before each file block in the processed CSS.
|
||||
|
||||
- **csspath** (string): Path where the CSS files are related to the HTML files. By default, UnCSS uses the path specified in the `<link rel="stylesheet" href="path/to/file.css"/>`.
|
||||
|
||||
- **htmlroot** (string): Where the project root is. Useful for example if you have HTML that references _local_ files with root-relative URLs, i.e. `href="/css/style.css"`.
|
||||
|
||||
- **ignore** (string[]): provide a list of selectors that should not be removed by UnCSS. For example, styles added by user interaction with the page (hover, click), since those are not detectable by UnCSS yet. Both literal names and regex patterns are recognized. Otherwise, you can add a comment before specific selectors:
|
||||
|
||||
```css
|
||||
/* uncss:ignore */
|
||||
.selector1 {
|
||||
/* this rule will be ignored */
|
||||
}
|
||||
|
||||
.selector2 {
|
||||
/* this will NOT be ignored */
|
||||
}
|
||||
|
||||
/* uncss:ignore start */
|
||||
|
||||
/* all rules in here will be ignored */
|
||||
|
||||
/* uncss:ignore end */
|
||||
```
|
||||
|
||||
- **ignoreSheets** (string[] | RegExp[]): Do not process these stylesheets, e.g. Google fonts. Accepts strings or regex patterns.
|
||||
|
||||
- **inject** (string / function(window)): Path to a local javascript file which is executed before uncss runs. A function can also be passed directly in.
|
||||
|
||||
Example inject.js file
|
||||
|
||||
```js
|
||||
'use strict';
|
||||
|
||||
module.exports = function(window) {
|
||||
window.document.querySelector('html').classList.add('no-csscalc', 'csscalc');
|
||||
};
|
||||
```
|
||||
|
||||
Example of passing inject as a function
|
||||
|
||||
```js
|
||||
{
|
||||
inject: function(window){
|
||||
window.document.querySelector('html').classList.add('no-csscalc', 'csscalc');
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
- **jsdom** (object) (Supported only by API): Supply the options used to create the JSDOM pages ([https://github.com/jsdom/jsdom](https://github.com/jsdom/jsdom)). At the moment, `config.resources` is not yet supported.
|
||||
|
||||
- **media** (string[]): By default UnCSS processes only stylesheets with media query `_all_`, `_screen_`, and those without one. Specify here which others to include.
|
||||
|
||||
- **raw** (string): Give the task a raw string of CSS in addition to the existing stylesheet options; useful in scripting when your CSS hasn't yet been written to disk.
|
||||
|
||||
- **report** (boolean, default: `true`): Return the report object in callback.
|
||||
|
||||
- **strictSSL** (boolean, default: `true`): Disable SSL verification when retrieving html source
|
||||
|
||||
- **stylesheets** (string[]): Use these stylesheets instead of those extracted from the HTML files. Prepend paths with the `file://` protocol to force use of local stylesheets, otherwise paths will be resolved as a browser would for an anchor tag `href` on the HTML page.
|
||||
|
||||
- **timeout** (number): Specify how long to wait for the JS to be loaded.
|
||||
|
||||
- **uncssrc** (string): Load all options from a JSON file. Regular expressions for the `ignore` and `ignoreSheets` options should be wrapped in quotation marks.
|
||||
|
||||
Example uncssrc file:
|
||||
|
||||
```json
|
||||
{
|
||||
"ignore": [
|
||||
".unused",
|
||||
"/^#js/"
|
||||
],
|
||||
"stylesheets": [
|
||||
"css/override.css"
|
||||
]
|
||||
}
|
||||
```
|
||||
|
||||
- **userAgent** (String, default: `'uncss'`): The user agent string that jsdom should send when requesting pages. May be useful when loading markup from services which use user agent based device detection to serve custom markup to mobile devices. Defaults to `uncss`.
|
||||
|
||||
### As a PostCSS Plugin
|
||||
|
||||
UnCSS can be used as a [PostCSS](https://github.com/postcss/postcss) Plugin.
|
||||
|
||||
```js
|
||||
postcss([ require('uncss').postcssPlugin ]);
|
||||
```
|
||||
|
||||
See [PostCSS docs](https://github.com/postcss/postcss) for examples for your environment.
|
||||
|
||||
**Note:** Depending on your environment, you might not be able to use uncss as a PostCSS plugin since the plugin is not directly exported. In such cases, use the wrapper library [postcss-uncss](https://github.com/RyanZim/postcss-uncss).
|
||||
|
||||
#### Options
|
||||
|
||||
- **html** (string[]): provide a list of html files to parse for selectors and elements. Usage of [globs](https://github.com/isaacs/node-glob) is allowed.
|
||||
|
||||
- **ignore** (string[] | RegExp[]): provide a list of selectors that should not be removed by UnCSS. For example, styles added by user interaction with the page (hover, click), since those are not detectable by UnCSS yet. Both literal names and regex patterns are recognized. Otherwise, you can add a comment before specific selectors in your CSS:
|
||||
|
||||
```css
|
||||
/* uncss:ignore */
|
||||
.selector1 {
|
||||
/* this rule will be ignored */
|
||||
}
|
||||
|
||||
.selector2 {
|
||||
/* this will NOT be ignored */
|
||||
}
|
||||
```
|
||||
|
||||
##### Example Configuration
|
||||
|
||||
```js
|
||||
{
|
||||
html: ['index.html', 'about.html', 'team/*.html'],
|
||||
ignore: ['.fade']
|
||||
}
|
||||
```
|
||||
|
||||
## License
|
||||
|
||||
Copyright (c) 2019 Giacomo Martino. See the [LICENSE](/LICENSE.md) file for license rights and limitations (MIT).
|
||||
111
BACK_BACK/node_modules/uncss/bin/uncss
generated
vendored
Executable file
111
BACK_BACK/node_modules/uncss/bin/uncss
generated
vendored
Executable file
|
|
@ -0,0 +1,111 @@
|
|||
#!/usr/bin/env node
|
||||
|
||||
'use strict';
|
||||
|
||||
(function () {
|
||||
process.title = 'uncss';
|
||||
|
||||
const uncss = require('../src/uncss.js'),
|
||||
data = require('../package.json'),
|
||||
program = require('commander'),
|
||||
fs = require('fs');
|
||||
|
||||
let buffer = '',
|
||||
options;
|
||||
|
||||
function listArg(val) {
|
||||
return val.split(',');
|
||||
}
|
||||
|
||||
program
|
||||
.version(data.version)
|
||||
.usage('[options] <file or URL, ...>\n\t e.g. uncss https://getbootstrap.com/docs/3.3/examples/jumbotron/ > stylesheet.css')
|
||||
.option('-i, --ignore <selector, ...>', 'Do not remove given selectors', listArg)
|
||||
.option('-m, --media <media_query, ...>', 'Process additional media queries', listArg)
|
||||
.option('-C, --csspath <path>', 'Relative path where the CSS files are located')
|
||||
.option('-s, --stylesheets <file, ...>', 'Specify additional stylesheets to process', listArg)
|
||||
.option('-S, --ignoreSheets <selector, ...>', 'Do not include specified stylesheets', listArg)
|
||||
.option('-r, --raw <string>', 'Pass in a raw string of CSS')
|
||||
.option('-t, --timeout <milliseconds>', 'Wait for JS evaluation')
|
||||
.option('-H, --htmlroot <folder>', 'Absolute paths\' root location')
|
||||
.option('-u, --uncssrc <file>', 'Load these options from <file>')
|
||||
.option('-n, --noBanner', 'Disable banner')
|
||||
.option('-a, --userAgent <string>', 'Use a custom useragent string')
|
||||
.option('-I, --inject <file>', 'Path to javascript file to be executed before uncss runs')
|
||||
.option('-o, --output <file>', 'Path to write resulting CSS to')
|
||||
.parse(process.argv);
|
||||
|
||||
options = {
|
||||
ignore: program.ignore,
|
||||
ignoreSheets: program.ignoreSheets,
|
||||
media: program.media,
|
||||
csspath: program.csspath,
|
||||
stylesheets: program.stylesheets,
|
||||
raw: program.raw,
|
||||
timeout: program.timeout,
|
||||
htmlroot: program.htmlroot,
|
||||
uncssrc: program.uncssrc,
|
||||
banner: !program.noBanner,
|
||||
userAgent: program.userAgent,
|
||||
inject: program.inject
|
||||
};
|
||||
|
||||
if (program.args.length) {
|
||||
if (options.ignore) {
|
||||
options.ignore = options.ignore.map((ign) => {
|
||||
/* Create RegExes */
|
||||
if (ign[0] === '/') {
|
||||
/* Remove starting and trailing '/' */
|
||||
return new RegExp(ign.slice(1, -1));
|
||||
}
|
||||
return ign;
|
||||
});
|
||||
}
|
||||
|
||||
if (options.ignoreSheets) {
|
||||
options.ignoreSheets = options.ignoreSheets.map((ign) => {
|
||||
/* Create RegExes */
|
||||
if (ign[0] === '/') {
|
||||
/* Remove starting and trailing '/' */
|
||||
return new RegExp(ign.slice(1, -1));
|
||||
}
|
||||
return ign;
|
||||
});
|
||||
}
|
||||
|
||||
/* If used from the command line, concatenate the output */
|
||||
uncss(program.args, options, (err, css) => {
|
||||
if (err) {
|
||||
throw err;
|
||||
}
|
||||
if (program.output) {
|
||||
fs.writeFile(program.output, css, 'utf8', (err) => {
|
||||
if (err) {
|
||||
throw err;
|
||||
}
|
||||
console.log(`${program.output} has been saved!`);
|
||||
});
|
||||
} else {
|
||||
console.log(css);
|
||||
}
|
||||
});
|
||||
} else {
|
||||
/* No files were specified, read HTML from stdin */
|
||||
process.stdin.resume();
|
||||
process.stdin.setEncoding('utf8');
|
||||
|
||||
process.stdin.on('data', (chunk) => {
|
||||
buffer += chunk;
|
||||
});
|
||||
|
||||
process.stdin.on('end', () => {
|
||||
uncss(buffer, options, (err, css) => {
|
||||
if (err) {
|
||||
throw err;
|
||||
}
|
||||
console.log(css);
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
}());
|
||||
22
BACK_BACK/node_modules/uncss/node_modules/is-absolute-url/index.d.ts
generated
vendored
Executable file
22
BACK_BACK/node_modules/uncss/node_modules/is-absolute-url/index.d.ts
generated
vendored
Executable file
|
|
@ -0,0 +1,22 @@
|
|||
/**
|
||||
Check if a URL is absolute.
|
||||
|
||||
@param url - The URL to check.
|
||||
|
||||
@example
|
||||
```
|
||||
import isAbsoluteUrl = require('is-absolute-url');
|
||||
|
||||
isAbsoluteUrl('http://sindresorhus.com/foo/bar');
|
||||
//=> true
|
||||
|
||||
isAbsoluteUrl('//sindresorhus.com');
|
||||
//=> false
|
||||
|
||||
isAbsoluteUrl('foo/bar');
|
||||
//=> false
|
||||
```
|
||||
*/
|
||||
declare function isAbsoluteUrl(url: string): boolean;
|
||||
|
||||
export = isAbsoluteUrl;
|
||||
16
BACK_BACK/node_modules/uncss/node_modules/is-absolute-url/index.js
generated
vendored
Executable file
16
BACK_BACK/node_modules/uncss/node_modules/is-absolute-url/index.js
generated
vendored
Executable file
|
|
@ -0,0 +1,16 @@
|
|||
'use strict';
|
||||
|
||||
module.exports = url => {
|
||||
if (typeof url !== 'string') {
|
||||
throw new TypeError(`Expected a \`string\`, got \`${typeof url}\``);
|
||||
}
|
||||
|
||||
// Don't match Windows paths `c:\`
|
||||
if (/^[a-zA-Z]:\\/.test(url)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
// Scheme: https://tools.ietf.org/html/rfc3986#section-3.1
|
||||
// Absolute URL: https://tools.ietf.org/html/rfc3986#section-4.3
|
||||
return /^[a-zA-Z][a-zA-Z\d+\-.]*:/.test(url);
|
||||
};
|
||||
9
BACK_BACK/node_modules/uncss/node_modules/is-absolute-url/license
generated
vendored
Executable file
9
BACK_BACK/node_modules/uncss/node_modules/is-absolute-url/license
generated
vendored
Executable file
|
|
@ -0,0 +1,9 @@
|
|||
MIT License
|
||||
|
||||
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
35
BACK_BACK/node_modules/uncss/node_modules/is-absolute-url/package.json
generated
vendored
Executable file
35
BACK_BACK/node_modules/uncss/node_modules/is-absolute-url/package.json
generated
vendored
Executable file
|
|
@ -0,0 +1,35 @@
|
|||
{
|
||||
"name": "is-absolute-url",
|
||||
"version": "3.0.3",
|
||||
"description": "Check if a URL is absolute",
|
||||
"license": "MIT",
|
||||
"repository": "sindresorhus/is-absolute-url",
|
||||
"author": {
|
||||
"name": "Sindre Sorhus",
|
||||
"email": "sindresorhus@gmail.com",
|
||||
"url": "sindresorhus.com"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=8"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "xo && ava && tsd"
|
||||
},
|
||||
"files": [
|
||||
"index.js",
|
||||
"index.d.ts"
|
||||
],
|
||||
"keywords": [
|
||||
"url",
|
||||
"absolute",
|
||||
"relative",
|
||||
"uri",
|
||||
"is",
|
||||
"check"
|
||||
],
|
||||
"devDependencies": {
|
||||
"ava": "^1.4.1",
|
||||
"tsd": "^0.7.2",
|
||||
"xo": "^0.24.0"
|
||||
}
|
||||
}
|
||||
44
BACK_BACK/node_modules/uncss/node_modules/is-absolute-url/readme.md
generated
vendored
Executable file
44
BACK_BACK/node_modules/uncss/node_modules/is-absolute-url/readme.md
generated
vendored
Executable file
|
|
@ -0,0 +1,44 @@
|
|||
# is-absolute-url [](https://travis-ci.org/sindresorhus/is-absolute-url)
|
||||
|
||||
> Check if a URL is absolute
|
||||
|
||||
|
||||
## Install
|
||||
|
||||
```
|
||||
$ npm install is-absolute-url
|
||||
```
|
||||
|
||||
|
||||
## Usage
|
||||
|
||||
```js
|
||||
const isAbsoluteUrl = require('is-absolute-url');
|
||||
|
||||
isAbsoluteUrl('https://sindresorhus.com/foo/bar');
|
||||
//=> true
|
||||
|
||||
isAbsoluteUrl('//sindresorhus.com');
|
||||
//=> false
|
||||
|
||||
isAbsoluteUrl('foo/bar');
|
||||
//=> false
|
||||
```
|
||||
|
||||
|
||||
## Related
|
||||
|
||||
See [is-relative-url](https://github.com/sindresorhus/is-relative-url) for the inverse.
|
||||
|
||||
|
||||
---
|
||||
|
||||
<div align="center">
|
||||
<b>
|
||||
<a href="https://tidelift.com/subscription/pkg/npm-is-absolute-url?utm_source=npm-is-absolute-url&utm_medium=referral&utm_campaign=readme">Get professional support for this package with a Tidelift subscription</a>
|
||||
</b>
|
||||
<br>
|
||||
<sub>
|
||||
Tidelift helps make open source sustainable for maintainers while giving companies<br>assurances about security, maintenance, and licensing for their dependencies.
|
||||
</sub>
|
||||
</div>
|
||||
873
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/API.md
generated
vendored
Executable file
873
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/API.md
generated
vendored
Executable file
|
|
@ -0,0 +1,873 @@
|
|||
# API Documentation
|
||||
|
||||
*Please use only this documented API when working with the parser. Methods
|
||||
not documented here are subject to change at any point.*
|
||||
|
||||
## `parser` function
|
||||
|
||||
This is the module's main entry point.
|
||||
|
||||
```js
|
||||
const parser = require('postcss-selector-parser');
|
||||
```
|
||||
|
||||
### `parser([transform], [options])`
|
||||
|
||||
Creates a new `processor` instance
|
||||
|
||||
```js
|
||||
const processor = parser();
|
||||
```
|
||||
|
||||
Or, with optional transform function
|
||||
|
||||
```js
|
||||
const transform = selectors => {
|
||||
selectors.walkUniversals(selector => {
|
||||
selector.remove();
|
||||
});
|
||||
};
|
||||
|
||||
const processor = parser(transform)
|
||||
|
||||
// Example
|
||||
const result = processor.processSync('*.class');
|
||||
// => .class
|
||||
```
|
||||
|
||||
[See processor documentation](#processor)
|
||||
|
||||
Arguments:
|
||||
|
||||
* `transform (function)`: Provide a function to work with the parsed AST.
|
||||
* `options (object)`: Provide default options for all calls on the returned `Processor`.
|
||||
|
||||
### `parser.attribute([props])`
|
||||
|
||||
Creates a new attribute selector.
|
||||
|
||||
```js
|
||||
parser.attribute({attribute: 'href'});
|
||||
// => [href]
|
||||
```
|
||||
|
||||
Arguments:
|
||||
|
||||
* `props (object)`: The new node's properties.
|
||||
|
||||
### `parser.className([props])`
|
||||
|
||||
Creates a new class selector.
|
||||
|
||||
```js
|
||||
parser.className({value: 'button'});
|
||||
// => .button
|
||||
```
|
||||
|
||||
Arguments:
|
||||
|
||||
* `props (object)`: The new node's properties.
|
||||
|
||||
### `parser.combinator([props])`
|
||||
|
||||
Creates a new selector combinator.
|
||||
|
||||
```js
|
||||
parser.combinator({value: '+'});
|
||||
// => +
|
||||
```
|
||||
|
||||
Arguments:
|
||||
|
||||
* `props (object)`: The new node's properties.
|
||||
|
||||
Notes:
|
||||
* **Descendant Combinators** The value of descendant combinators created by the
|
||||
parser always just a single space (`" "`). For descendant selectors with no
|
||||
comments, additional space is now stored in `node.spaces.before`. Depending
|
||||
on the location of comments, additional spaces may be stored in
|
||||
`node.raws.spaces.before`, `node.raws.spaces.after`, or `node.raws.value`.
|
||||
* **Named Combinators** Although, nonstandard and unlikely to ever become a standard,
|
||||
named combinators like `/deep/` and `/for/` are parsed as combinators. The
|
||||
`node.value` is name after being unescaped and normalized as lowercase. The
|
||||
original value for the combinator name is stored in `node.raws.value`.
|
||||
|
||||
|
||||
### `parser.comment([props])`
|
||||
|
||||
Creates a new comment.
|
||||
|
||||
```js
|
||||
parser.comment({value: '/* Affirmative, Dave. I read you. */'});
|
||||
// => /* Affirmative, Dave. I read you. */
|
||||
```
|
||||
|
||||
Arguments:
|
||||
|
||||
* `props (object)`: The new node's properties.
|
||||
|
||||
### `parser.id([props])`
|
||||
|
||||
Creates a new id selector.
|
||||
|
||||
```js
|
||||
parser.id({value: 'search'});
|
||||
// => #search
|
||||
```
|
||||
|
||||
Arguments:
|
||||
|
||||
* `props (object)`: The new node's properties.
|
||||
|
||||
### `parser.nesting([props])`
|
||||
|
||||
Creates a new nesting selector.
|
||||
|
||||
```js
|
||||
parser.nesting();
|
||||
// => &
|
||||
```
|
||||
|
||||
Arguments:
|
||||
|
||||
* `props (object)`: The new node's properties.
|
||||
|
||||
### `parser.pseudo([props])`
|
||||
|
||||
Creates a new pseudo selector.
|
||||
|
||||
```js
|
||||
parser.pseudo({value: '::before'});
|
||||
// => ::before
|
||||
```
|
||||
|
||||
Arguments:
|
||||
|
||||
* `props (object)`: The new node's properties.
|
||||
|
||||
### `parser.root([props])`
|
||||
|
||||
Creates a new root node.
|
||||
|
||||
```js
|
||||
parser.root();
|
||||
// => (empty)
|
||||
```
|
||||
|
||||
Arguments:
|
||||
|
||||
* `props (object)`: The new node's properties.
|
||||
|
||||
### `parser.selector([props])`
|
||||
|
||||
Creates a new selector node.
|
||||
|
||||
```js
|
||||
parser.selector();
|
||||
// => (empty)
|
||||
```
|
||||
|
||||
Arguments:
|
||||
|
||||
* `props (object)`: The new node's properties.
|
||||
|
||||
### `parser.string([props])`
|
||||
|
||||
Creates a new string node.
|
||||
|
||||
```js
|
||||
parser.string();
|
||||
// => (empty)
|
||||
```
|
||||
|
||||
Arguments:
|
||||
|
||||
* `props (object)`: The new node's properties.
|
||||
|
||||
### `parser.tag([props])`
|
||||
|
||||
Creates a new tag selector.
|
||||
|
||||
```js
|
||||
parser.tag({value: 'button'});
|
||||
// => button
|
||||
```
|
||||
|
||||
Arguments:
|
||||
|
||||
* `props (object)`: The new node's properties.
|
||||
|
||||
### `parser.universal([props])`
|
||||
|
||||
Creates a new universal selector.
|
||||
|
||||
```js
|
||||
parser.universal();
|
||||
// => *
|
||||
```
|
||||
|
||||
Arguments:
|
||||
|
||||
* `props (object)`: The new node's properties.
|
||||
|
||||
## Node types
|
||||
|
||||
### `node.type`
|
||||
|
||||
A string representation of the selector type. It can be one of the following;
|
||||
`attribute`, `class`, `combinator`, `comment`, `id`, `nesting`, `pseudo`,
|
||||
`root`, `selector`, `string`, `tag`, or `universal`. Note that for convenience,
|
||||
these constants are exposed on the main `parser` as uppercased keys. So for
|
||||
example you can get `id` by querying `parser.ID`.
|
||||
|
||||
```js
|
||||
parser.attribute({attribute: 'href'}).type;
|
||||
// => 'attribute'
|
||||
```
|
||||
|
||||
### `node.parent`
|
||||
|
||||
Returns the parent node.
|
||||
|
||||
```js
|
||||
root.nodes[0].parent === root;
|
||||
```
|
||||
|
||||
### `node.toString()`, `String(node)`, or `'' + node`
|
||||
|
||||
Returns a string representation of the node.
|
||||
|
||||
```js
|
||||
const id = parser.id({value: 'search'});
|
||||
console.log(String(id));
|
||||
// => #search
|
||||
```
|
||||
|
||||
### `node.next()` & `node.prev()`
|
||||
|
||||
Returns the next/previous child of the parent node.
|
||||
|
||||
```js
|
||||
const next = id.next();
|
||||
if (next && next.type !== 'combinator') {
|
||||
throw new Error('Qualified IDs are not allowed!');
|
||||
}
|
||||
```
|
||||
|
||||
### `node.replaceWith(node)`
|
||||
|
||||
Replace a node with another.
|
||||
|
||||
```js
|
||||
const attr = selectors.first.first;
|
||||
const className = parser.className({value: 'test'});
|
||||
attr.replaceWith(className);
|
||||
```
|
||||
|
||||
Arguments:
|
||||
|
||||
* `node`: The node to substitute the original with.
|
||||
|
||||
### `node.remove()`
|
||||
|
||||
Removes the node from its parent node.
|
||||
|
||||
```js
|
||||
if (node.type === 'id') {
|
||||
node.remove();
|
||||
}
|
||||
```
|
||||
|
||||
### `node.clone()`
|
||||
|
||||
Returns a copy of a node, detached from any parent containers that the
|
||||
original might have had.
|
||||
|
||||
```js
|
||||
const cloned = parser.id({value: 'search'});
|
||||
String(cloned);
|
||||
|
||||
// => #search
|
||||
```
|
||||
|
||||
### `node.isAtPosition(line, column)`
|
||||
|
||||
Return a `boolean` indicating whether this node includes the character at the
|
||||
position of the given line and column. Returns `undefined` if the nodes lack
|
||||
sufficient source metadata to determine the position.
|
||||
|
||||
Arguments:
|
||||
|
||||
* `line`: 1-index based line number relative to the start of the selector.
|
||||
* `column`: 1-index based column number relative to the start of the selector.
|
||||
|
||||
### `node.spaces`
|
||||
|
||||
Extra whitespaces around the node will be moved into `node.spaces.before` and
|
||||
`node.spaces.after`. So for example, these spaces will be moved as they have
|
||||
no semantic meaning:
|
||||
|
||||
```css
|
||||
h1 , h2 {}
|
||||
```
|
||||
|
||||
For descendent selectors, the value is always a single space.
|
||||
|
||||
```css
|
||||
h1 h2 {}
|
||||
```
|
||||
|
||||
Additional whitespace is found in either the `node.spaces.before` and `node.spaces.after` depending on the presence of comments or other whitespace characters. If the actual whitespace does not start or end with a single space, the node's raw value is set to the actual space(s) found in the source.
|
||||
|
||||
### `node.source`
|
||||
|
||||
An object describing the node's start/end, line/column source position.
|
||||
|
||||
Within the following CSS, the `.bar` class node ...
|
||||
|
||||
```css
|
||||
.foo,
|
||||
.bar {}
|
||||
```
|
||||
|
||||
... will contain the following `source` object.
|
||||
|
||||
```js
|
||||
source: {
|
||||
start: {
|
||||
line: 2,
|
||||
column: 3
|
||||
},
|
||||
end: {
|
||||
line: 2,
|
||||
column: 6
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
### `node.sourceIndex`
|
||||
|
||||
The zero-based index of the node within the original source string.
|
||||
|
||||
Within the following CSS, the `.baz` class node will have a `sourceIndex` of `12`.
|
||||
|
||||
```css
|
||||
.foo, .bar, .baz {}
|
||||
```
|
||||
|
||||
## Container types
|
||||
|
||||
The `root`, `selector`, and `pseudo` nodes have some helper methods for working
|
||||
with their children.
|
||||
|
||||
### `container.nodes`
|
||||
|
||||
An array of the container's children.
|
||||
|
||||
```js
|
||||
// Input: h1 h2
|
||||
selectors.at(0).nodes.length // => 3
|
||||
selectors.at(0).nodes[0].value // => 'h1'
|
||||
selectors.at(0).nodes[1].value // => ' '
|
||||
```
|
||||
|
||||
### `container.first` & `container.last`
|
||||
|
||||
The first/last child of the container.
|
||||
|
||||
```js
|
||||
selector.first === selector.nodes[0];
|
||||
selector.last === selector.nodes[selector.nodes.length - 1];
|
||||
```
|
||||
|
||||
### `container.at(index)`
|
||||
|
||||
Returns the node at position `index`.
|
||||
|
||||
```js
|
||||
selector.at(0) === selector.first;
|
||||
selector.at(0) === selector.nodes[0];
|
||||
```
|
||||
|
||||
Arguments:
|
||||
|
||||
* `index`: The index of the node to return.
|
||||
|
||||
### `container.atPosition(line, column)`
|
||||
|
||||
Returns the node at the source position `index`.
|
||||
|
||||
```js
|
||||
selector.at(0) === selector.first;
|
||||
selector.at(0) === selector.nodes[0];
|
||||
```
|
||||
|
||||
Arguments:
|
||||
|
||||
* `index`: The index of the node to return.
|
||||
|
||||
### `container.index(node)`
|
||||
|
||||
Return the index of the node within its container.
|
||||
|
||||
```js
|
||||
selector.index(selector.nodes[2]) // => 2
|
||||
```
|
||||
|
||||
Arguments:
|
||||
|
||||
* `node`: A node within the current container.
|
||||
|
||||
### `container.length`
|
||||
|
||||
Proxy to the length of the container's nodes.
|
||||
|
||||
```js
|
||||
container.length === container.nodes.length
|
||||
```
|
||||
|
||||
### `container` Array iterators
|
||||
|
||||
The container class provides proxies to certain Array methods; these are:
|
||||
|
||||
* `container.map === container.nodes.map`
|
||||
* `container.reduce === container.nodes.reduce`
|
||||
* `container.every === container.nodes.every`
|
||||
* `container.some === container.nodes.some`
|
||||
* `container.filter === container.nodes.filter`
|
||||
* `container.sort === container.nodes.sort`
|
||||
|
||||
Note that these methods only work on a container's immediate children; recursive
|
||||
iteration is provided by `container.walk`.
|
||||
|
||||
### `container.each(callback)`
|
||||
|
||||
Iterate the container's immediate children, calling `callback` for each child.
|
||||
You may return `false` within the callback to break the iteration.
|
||||
|
||||
```js
|
||||
let className;
|
||||
selectors.each((selector, index) => {
|
||||
if (selector.type === 'class') {
|
||||
className = selector.value;
|
||||
return false;
|
||||
}
|
||||
});
|
||||
```
|
||||
|
||||
Note that unlike `Array#forEach()`, this iterator is safe to use whilst adding
|
||||
or removing nodes from the container.
|
||||
|
||||
Arguments:
|
||||
|
||||
* `callback (function)`: A function to call for each node, which receives `node`
|
||||
and `index` arguments.
|
||||
|
||||
### `container.walk(callback)`
|
||||
|
||||
Like `container#each`, but will also iterate child nodes as long as they are
|
||||
`container` types.
|
||||
|
||||
```js
|
||||
selectors.walk((selector, index) => {
|
||||
// all nodes
|
||||
});
|
||||
```
|
||||
|
||||
Arguments:
|
||||
|
||||
* `callback (function)`: A function to call for each node, which receives `node`
|
||||
and `index` arguments.
|
||||
|
||||
This iterator is safe to use whilst mutating `container.nodes`,
|
||||
like `container#each`.
|
||||
|
||||
### `container.walk` proxies
|
||||
|
||||
The container class provides proxy methods for iterating over types of nodes,
|
||||
so that it is easier to write modules that target specific selectors. Those
|
||||
methods are:
|
||||
|
||||
* `container.walkAttributes`
|
||||
* `container.walkClasses`
|
||||
* `container.walkCombinators`
|
||||
* `container.walkComments`
|
||||
* `container.walkIds`
|
||||
* `container.walkNesting`
|
||||
* `container.walkPseudos`
|
||||
* `container.walkTags`
|
||||
* `container.walkUniversals`
|
||||
|
||||
### `container.split(callback)`
|
||||
|
||||
This method allows you to split a group of nodes by returning `true` from
|
||||
a callback. It returns an array of arrays, where each inner array corresponds
|
||||
to the groups that you created via the callback.
|
||||
|
||||
```js
|
||||
// (input) => h1 h2>>h3
|
||||
const list = selectors.first.split(selector => {
|
||||
return selector.type === 'combinator';
|
||||
});
|
||||
|
||||
// (node values) => [['h1', ' '], ['h2', '>>'], ['h3']]
|
||||
```
|
||||
|
||||
Arguments:
|
||||
|
||||
* `callback (function)`: A function to call for each node, which receives `node`
|
||||
as an argument.
|
||||
|
||||
### `container.prepend(node)` & `container.append(node)`
|
||||
|
||||
Add a node to the start/end of the container. Note that doing so will set
|
||||
the parent property of the node to this container.
|
||||
|
||||
```js
|
||||
const id = parser.id({value: 'search'});
|
||||
selector.append(id);
|
||||
```
|
||||
|
||||
Arguments:
|
||||
|
||||
* `node`: The node to add.
|
||||
|
||||
### `container.insertBefore(old, new)` & `container.insertAfter(old, new)`
|
||||
|
||||
Add a node before or after an existing node in a container:
|
||||
|
||||
```js
|
||||
selectors.walk(selector => {
|
||||
if (selector.type !== 'class') {
|
||||
const className = parser.className({value: 'theme-name'});
|
||||
selector.parent.insertAfter(selector, className);
|
||||
}
|
||||
});
|
||||
```
|
||||
|
||||
Arguments:
|
||||
|
||||
* `old`: The existing node in the container.
|
||||
* `new`: The new node to add before/after the existing node.
|
||||
|
||||
### `container.removeChild(node)`
|
||||
|
||||
Remove the node from the container. Note that you can also use
|
||||
`node.remove()` if you would like to remove just a single node.
|
||||
|
||||
```js
|
||||
selector.length // => 2
|
||||
selector.remove(id)
|
||||
selector.length // => 1;
|
||||
id.parent // undefined
|
||||
```
|
||||
|
||||
Arguments:
|
||||
|
||||
* `node`: The node to remove.
|
||||
|
||||
### `container.removeAll()` or `container.empty()`
|
||||
|
||||
Remove all children from the container.
|
||||
|
||||
```js
|
||||
selector.removeAll();
|
||||
selector.length // => 0
|
||||
```
|
||||
|
||||
## Root nodes
|
||||
|
||||
A root node represents a comma separated list of selectors. Indeed, all
|
||||
a root's `toString()` method does is join its selector children with a ','.
|
||||
Other than this, it has no special functionality and acts like a container.
|
||||
|
||||
### `root.trailingComma`
|
||||
|
||||
This will be set to `true` if the input has a trailing comma, in order to
|
||||
support parsing of legacy CSS hacks.
|
||||
|
||||
## Selector nodes
|
||||
|
||||
A selector node represents a single complex selector. For example, this
|
||||
selector string `h1 h2 h3, [href] > p`, is represented as two selector nodes.
|
||||
It has no special functionality of its own.
|
||||
|
||||
## Pseudo nodes
|
||||
|
||||
A pseudo selector extends a container node; if it has any parameters of its
|
||||
own (such as `h1:not(h2, h3)`), they will be its children. Note that the pseudo
|
||||
`value` will always contain the colons preceding the pseudo identifier. This
|
||||
is so that both `:before` and `::before` are properly represented in the AST.
|
||||
|
||||
## Attribute nodes
|
||||
|
||||
### `attribute.quoted`
|
||||
|
||||
Returns `true` if the attribute's value is wrapped in quotation marks, false if it is not.
|
||||
Remains `undefined` if there is no attribute value.
|
||||
|
||||
```css
|
||||
[href=foo] /* false */
|
||||
[href='foo'] /* true */
|
||||
[href="foo"] /* true */
|
||||
[href] /* undefined */
|
||||
```
|
||||
|
||||
### `attribute.qualifiedAttribute`
|
||||
|
||||
Returns the attribute name qualified with the namespace if one is given.
|
||||
|
||||
### `attribute.offsetOf(part)`
|
||||
|
||||
Returns the offset of the attribute part specified relative to the
|
||||
start of the node of the output string. This is useful in raising
|
||||
error messages about a specific part of the attribute, especially
|
||||
in combination with `attribute.sourceIndex`.
|
||||
|
||||
Returns `-1` if the name is invalid or the value doesn't exist in this
|
||||
attribute.
|
||||
|
||||
The legal values for `part` are:
|
||||
|
||||
* `"ns"` - alias for "namespace"
|
||||
* `"namespace"` - the namespace if it exists.
|
||||
* `"attribute"` - the attribute name
|
||||
* `"attributeNS"` - the start of the attribute or its namespace
|
||||
* `"operator"` - the match operator of the attribute
|
||||
* `"value"` - The value (string or identifier)
|
||||
* `"insensitive"` - the case insensitivity flag
|
||||
|
||||
### `attribute.raws.unquoted`
|
||||
|
||||
Returns the unquoted content of the attribute's value.
|
||||
Remains `undefined` if there is no attribute value.
|
||||
|
||||
```css
|
||||
[href=foo] /* foo */
|
||||
[href='foo'] /* foo */
|
||||
[href="foo"] /* foo */
|
||||
[href] /* undefined */
|
||||
```
|
||||
|
||||
### `attribute.spaces`
|
||||
|
||||
Like `node.spaces` with the `before` and `after` values containing the spaces
|
||||
around the element, the parts of the attribute can also have spaces before
|
||||
and after them. The for each of `attribute`, `operator`, `value` and
|
||||
`insensitive` there is corresponding property of the same nam in
|
||||
`node.spaces` that has an optional `before` or `after` string containing only
|
||||
whitespace.
|
||||
|
||||
Note that corresponding values in `attributes.raws.spaces` contain values
|
||||
including any comments. If set, these values will override the
|
||||
`attribute.spaces` value. Take care to remove them if changing
|
||||
`attribute.spaces`.
|
||||
|
||||
### `attribute.raws`
|
||||
|
||||
The raws object stores comments and other information necessary to re-render
|
||||
the node exactly as it was in the source.
|
||||
|
||||
If a comment is embedded within the identifiers for the `namespace`, `attribute`
|
||||
or `value` then a property is placed in the raws for that value containing the full source of the propery including comments.
|
||||
|
||||
If a comment is embedded within the space between parts of the attribute
|
||||
then the raw for that space is set accordingly.
|
||||
|
||||
Setting an attribute's property `raws` value to be deleted.
|
||||
|
||||
For now, changing the spaces required also updating or removing any of the
|
||||
raws values that override them.
|
||||
|
||||
Example: `[ /*before*/ href /* after-attr */ = /* after-operator */ te/*inside-value*/st/* wow */ /*omg*/i/*bbq*/ /*whodoesthis*/]` would parse as:
|
||||
|
||||
```js
|
||||
{
|
||||
attribute: "href",
|
||||
operatator: "=",
|
||||
value: "test",
|
||||
spaces: {
|
||||
before: '',
|
||||
after: '',
|
||||
attribute: { before: ' ', after: ' ' },
|
||||
operator: { after: ' ' },
|
||||
value: { after: ' ' },
|
||||
insensitive: { after: ' ' }
|
||||
},
|
||||
raws: {
|
||||
spaces: {
|
||||
attribute: { before: ' /*before*/ ', after: ' /* after-attr */ ' },
|
||||
operator: { after: ' /* after-operator */ ' },
|
||||
value: { after: '/* wow */ /*omg*/' },
|
||||
insensitive: { after: '/*bbq*/ /*whodoesthis*/' }
|
||||
},
|
||||
unquoted: 'test',
|
||||
value: 'te/*inside-value*/st'
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
## `Processor`
|
||||
|
||||
### `ProcessorOptions`
|
||||
|
||||
* `lossless` - When `true`, whitespace is preserved. Defaults to `true`.
|
||||
* `updateSelector` - When `true`, if any processor methods are passed a postcss
|
||||
`Rule` node instead of a string, then that Rule's selector is updated
|
||||
with the results of the processing. Defaults to `true`.
|
||||
|
||||
### `process|processSync(selectors, [options])`
|
||||
|
||||
Processes the `selectors`, returning a string from the result of processing.
|
||||
|
||||
Note: when the `updateSelector` option is set, the rule's selector
|
||||
will be updated with the resulting string.
|
||||
|
||||
**Example:**
|
||||
|
||||
```js
|
||||
const parser = require("postcss-selector-parser");
|
||||
const processor = parser();
|
||||
|
||||
let result = processor.processSync(' .class');
|
||||
console.log(result);
|
||||
// => .class
|
||||
|
||||
// Asynchronous operation
|
||||
let promise = processor.process(' .class').then(result => {
|
||||
console.log(result)
|
||||
// => .class
|
||||
});
|
||||
|
||||
// To have the parser normalize whitespace values, utilize the options
|
||||
result = processor.processSync(' .class ', {lossless: false});
|
||||
console.log(result);
|
||||
// => .class
|
||||
|
||||
// For better syntax errors, pass a PostCSS Rule node.
|
||||
const postcss = require('postcss');
|
||||
rule = postcss.rule({selector: ' #foo > a, .class '});
|
||||
processor.process(rule, {lossless: false, updateSelector: true}).then(result => {
|
||||
console.log(result);
|
||||
// => #foo>a,.class
|
||||
console.log("rule:", rule.selector);
|
||||
// => rule: #foo>a,.class
|
||||
})
|
||||
```
|
||||
|
||||
Arguments:
|
||||
|
||||
* `selectors (string|postcss.Rule)`: Either a selector string or a PostCSS Rule
|
||||
node.
|
||||
* `[options] (object)`: Process options
|
||||
|
||||
|
||||
### `ast|astSync(selectors, [options])`
|
||||
|
||||
Like `process()` and `processSync()` but after
|
||||
processing the `selectors` these methods return the `Root` node of the result
|
||||
instead of a string.
|
||||
|
||||
Note: when the `updateSelector` option is set, the rule's selector
|
||||
will be updated with the resulting string.
|
||||
|
||||
### `transform|transformSync(selectors, [options])`
|
||||
|
||||
Like `process()` and `processSync()` but after
|
||||
processing the `selectors` these methods return the value returned by the
|
||||
processor callback.
|
||||
|
||||
Note: when the `updateSelector` option is set, the rule's selector
|
||||
will be updated with the resulting string.
|
||||
|
||||
### Error Handling Within Selector Processors
|
||||
|
||||
The root node passed to the selector processor callback
|
||||
has a method `error(message, options)` that returns an
|
||||
error object. This method should always be used to raise
|
||||
errors relating to the syntax of selectors. The options
|
||||
to this method are passed to postcss's error constructor
|
||||
([documentation](http://api.postcss.org/Container.html#error)).
|
||||
|
||||
#### Async Error Example
|
||||
|
||||
```js
|
||||
let processor = (root) => {
|
||||
return new Promise((resolve, reject) => {
|
||||
root.walkClasses((classNode) => {
|
||||
if (/^(.*)[-_]/.test(classNode.value)) {
|
||||
let msg = "classes may not have underscores or dashes in them";
|
||||
reject(root.error(msg, {
|
||||
index: classNode.sourceIndex + RegExp.$1.length + 1,
|
||||
word: classNode.value
|
||||
}));
|
||||
}
|
||||
});
|
||||
resolve();
|
||||
});
|
||||
};
|
||||
|
||||
const postcss = require("postcss");
|
||||
const parser = require("postcss-selector-parser");
|
||||
const selectorProcessor = parser(processor);
|
||||
const plugin = postcss.plugin('classValidator', (options) => {
|
||||
return (root) => {
|
||||
let promises = [];
|
||||
root.walkRules(rule => {
|
||||
promises.push(selectorProcessor.process(rule));
|
||||
});
|
||||
return Promise.all(promises);
|
||||
};
|
||||
});
|
||||
postcss(plugin()).process(`
|
||||
.foo-bar {
|
||||
color: red;
|
||||
}
|
||||
`.trim(), {from: 'test.css'}).catch((e) => console.error(e.toString()));
|
||||
|
||||
// CssSyntaxError: classValidator: ./test.css:1:5: classes may not have underscores or dashes in them
|
||||
//
|
||||
// > 1 | .foo-bar {
|
||||
// | ^
|
||||
// 2 | color: red;
|
||||
// 3 | }
|
||||
```
|
||||
|
||||
#### Synchronous Error Example
|
||||
|
||||
```js
|
||||
let processor = (root) => {
|
||||
root.walkClasses((classNode) => {
|
||||
if (/.*[-_]/.test(classNode.value)) {
|
||||
let msg = "classes may not have underscores or dashes in them";
|
||||
throw root.error(msg, {
|
||||
index: classNode.sourceIndex,
|
||||
word: classNode.value
|
||||
});
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
const postcss = require("postcss");
|
||||
const parser = require("postcss-selector-parser");
|
||||
const selectorProcessor = parser(processor);
|
||||
const plugin = postcss.plugin('classValidator', (options) => {
|
||||
return (root) => {
|
||||
root.walkRules(rule => {
|
||||
selectorProcessor.processSync(rule);
|
||||
});
|
||||
};
|
||||
});
|
||||
postcss(plugin()).process(`
|
||||
.foo-bar {
|
||||
color: red;
|
||||
}
|
||||
`.trim(), {from: 'test.css'}).catch((e) => console.error(e.toString()));
|
||||
|
||||
// CssSyntaxError: classValidator: ./test.css:1:5: classes may not have underscores or dashes in them
|
||||
//
|
||||
// > 1 | .foo-bar {
|
||||
// | ^
|
||||
// 2 | color: red;
|
||||
// 3 | }
|
||||
```
|
||||
479
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/CHANGELOG.md
generated
vendored
Executable file
479
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/CHANGELOG.md
generated
vendored
Executable file
|
|
@ -0,0 +1,479 @@
|
|||
# 6.0.2
|
||||
|
||||
- Fixed an issue with parsing and stringifying an empty attribute value
|
||||
|
||||
# 6.0.1
|
||||
|
||||
- Fixed an issue with unicode surrogate pair parsing
|
||||
|
||||
# 6.0.0
|
||||
|
||||
- Updated: `cssesc` to 3.0.0 (major)
|
||||
- Fixed: Issues with escaped `id` and `class` selectors
|
||||
|
||||
# 5.0.0
|
||||
|
||||
- Allow escaped dot within class name.
|
||||
- Update PostCSS to 7.0.7 (patch)
|
||||
|
||||
# 5.0.0-rc.4
|
||||
|
||||
- Fixed an issue where comments immediately after an insensitive (in attribute)
|
||||
were not parsed correctly.
|
||||
- Updated `cssesc` to 2.0.0 (major).
|
||||
- Removed outdated integration tests.
|
||||
- Added tests for custom selectors, tags with attributes, the universal
|
||||
selector with pseudos, and tokens after combinators.
|
||||
|
||||
# 5.0.0-rc.1
|
||||
|
||||
To ease adoption of the v5.0 release, we have relaxed the node version
|
||||
check performed by npm at installation time to allow for node 4, which
|
||||
remains officially unsupported, but likely to continue working for the
|
||||
time being.
|
||||
|
||||
# 5.0.0-rc.0
|
||||
|
||||
This release has **BREAKING CHANGES** that were required to fix regressions
|
||||
in 4.0.0 and to make the Combinator Node API consistent for all combinator
|
||||
types. Please read carefully.
|
||||
|
||||
## Summary of Changes
|
||||
|
||||
* The way a descendent combinator that isn't a single space character (E.g. `.a .b`) is stored in the AST has changed.
|
||||
* Named Combinators (E.g. `.a /for/ .b`) are now properly parsed as a combinator.
|
||||
* It is now possible to look up a node based on the source location of a character in that node and to query nodes if they contain some character.
|
||||
* Several bug fixes that caused the parser to hang and run out of memory when a `/` was encountered have been fixed.
|
||||
* The minimum supported version of Node is now `v6.0.0`.
|
||||
|
||||
### Changes to the Descendent Combinator
|
||||
|
||||
In prior releases, the value of a descendant combinator with multiple spaces included all the spaces.
|
||||
|
||||
* `.a .b`: Extra spaces are now stored as space before.
|
||||
- Old & Busted:
|
||||
- `combinator.value === " "`
|
||||
- New hotness:
|
||||
- `combinator.value === " " && combinator.spaces.before === " "`
|
||||
* `.a /*comment*/.b`: A comment at the end of the combinator causes extra space to become after space.
|
||||
- Old & Busted:
|
||||
- `combinator.value === " "`
|
||||
- `combinator.raws.value === " /*comment/"`
|
||||
- New hotness:
|
||||
- `combinator.value === " "`
|
||||
- `combinator.spaces.after === " "`
|
||||
- `combinator.raws.spaces.after === " /*comment*/"`
|
||||
* `.a<newline>.b`: whitespace that doesn't start or end with a single space character is stored as a raw value.
|
||||
- Old & Busted:
|
||||
- `combinator.value === "\n"`
|
||||
- `combinator.raws.value === undefined`
|
||||
- New hotness:
|
||||
- `combinator.value === " "`
|
||||
- `combinator.raws.value === "\n"`
|
||||
|
||||
### Support for "Named Combinators"
|
||||
|
||||
Although, nonstandard and unlikely to ever become a standard, combinators like `/deep/` and `/for/` are now properly supported.
|
||||
|
||||
Because they've been taken off the standardization track, there is no spec-official name for combinators of the form `/<ident>/`. However, I talked to [Tab Atkins](https://twitter.com/tabatkins) and we agreed to call them "named combinators" so now they are called that.
|
||||
|
||||
Before this release such named combinators were parsed without intention and generated three nodes of type `"tag"` where the first and last nodes had a value of `"/"`.
|
||||
|
||||
* `.a /for/ .b` is parsed as a combinator.
|
||||
- Old & Busted:
|
||||
- `root.nodes[0].nodes[1].type === "tag"`
|
||||
- `root.nodes[0].nodes[1].value === "/"`
|
||||
- New hotness:
|
||||
- `root.nodes[0].nodes[1].type === "combinator"`
|
||||
- `root.nodes[0].nodes[1].value === "/for/"`
|
||||
* `.a /F\6fR/ .b` escapes are handled and uppercase is normalized.
|
||||
- Old & Busted:
|
||||
- `root.nodes[0].nodes[2].type === "tag"`
|
||||
- `root.nodes[0].nodes[2].value === "F\\6fR"`
|
||||
- New hotness:
|
||||
- `root.nodes[0].nodes[1].type === "combinator"`
|
||||
- `root.nodes[0].nodes[1].value === "/for/"`
|
||||
- `root.nodes[0].nodes[1].raws.value === "/F\\6fR/"`
|
||||
|
||||
### Source position checks and lookups
|
||||
|
||||
A new API was added to look up a node based on the source location.
|
||||
|
||||
```js
|
||||
const selectorParser = require("postcss-selector-parser");
|
||||
// You can find the most specific node for any given character
|
||||
let combinator = selectorParser.astSync(".a > .b").atPosition(1,4);
|
||||
combinator.toString() === " > ";
|
||||
// You can check if a node includes a specific character
|
||||
// Whitespace surrounding the node that is owned by that node
|
||||
// is included in the check.
|
||||
[2,3,4,5,6].map(column => combinator.isAtPosition(1, column));
|
||||
// => [false, true, true, true, false]
|
||||
```
|
||||
|
||||
# 4.0.0
|
||||
|
||||
This release has **BREAKING CHANGES** that were required to fix bugs regarding values with escape sequences. Please read carefully.
|
||||
|
||||
* **Identifiers with escapes** - CSS escape sequences are now hidden from the public API by default.
|
||||
The normal value of a node like a class name or ID, or an aspect of a node such as attribute
|
||||
selector's value, is unescaped. Escapes representing Non-ascii characters are unescaped into
|
||||
unicode characters. For example: `bu\tton, .\31 00, #i\2764\FE0Fu, [attr="value is \"quoted\""]`
|
||||
will parse respectively to the values `button`, `100`, `i❤️u`, `value is "quoted"`.
|
||||
The original escape sequences for these values can be found in the corresponding property name
|
||||
in `node.raws`. Where possible, deprecation warnings were added, but the nature
|
||||
of escape handling makes it impossible to detect what is escaped or not. Our expectation is
|
||||
that most users are neither expecting nor handling escape sequences in their use of this library,
|
||||
and so for them, this is a bug fix. Users who are taking care to handle escapes correctly can
|
||||
now update their code to remove the escape handling and let us do it for them.
|
||||
|
||||
* **Mutating values with escapes** - When you make an update to a node property that has escape handling
|
||||
The value is assumed to be unescaped, and any special characters are escaped automatically and
|
||||
the corresponding `raws` value is immediately updated. This can result in changes to the original
|
||||
escape format. Where the exact value of the escape sequence is important there are methods that
|
||||
allow both values to be set in conjunction. There are a number of new convenience methods for
|
||||
manipulating values that involve escapes, especially for attributes values where the quote mark
|
||||
is involved. See https://github.com/postcss/postcss-selector-parser/pull/133 for an extensive
|
||||
write-up on these changes.
|
||||
|
||||
|
||||
**Upgrade/API Example**
|
||||
|
||||
In `3.x` there was no unescape handling and internal consistency of several properties was the caller's job to maintain. It was very easy for the developer
|
||||
to create a CSS file that did not parse correctly when some types of values
|
||||
were in use.
|
||||
|
||||
```js
|
||||
const selectorParser = require("postcss-selector-parser");
|
||||
let attr = selectorParser.attribute({attribute: "id", operator: "=", value: "a-value"});
|
||||
attr.value; // => "a-value"
|
||||
attr.toString(); // => [id=a-value]
|
||||
// Add quotes to an attribute's value.
|
||||
// All these values have to be set by the caller to be consistent:
|
||||
// no internal consistency is maintained.
|
||||
attr.raws.unquoted = attr.value
|
||||
attr.value = "'" + attr.value + "'";
|
||||
attr.value; // => "'a-value'"
|
||||
attr.quoted = true;
|
||||
attr.toString(); // => "[id='a-value']"
|
||||
```
|
||||
|
||||
In `4.0` there is a convenient API for setting and mutating values
|
||||
that may need escaping. Especially for attributes.
|
||||
|
||||
```js
|
||||
const selectorParser = require("postcss-selector-parser");
|
||||
|
||||
// The constructor requires you specify the exact escape sequence
|
||||
let className = selectorParser.className({value: "illegal class name", raws: {value: "illegal\\ class\\ name"}});
|
||||
className.toString(); // => '.illegal\\ class\\ name'
|
||||
|
||||
// So it's better to set the value as a property
|
||||
className = selectorParser.className();
|
||||
// Most properties that deal with identifiers work like this
|
||||
className.value = "escape for me";
|
||||
className.value; // => 'escape for me'
|
||||
className.toString(); // => '.escape\\ for\\ me'
|
||||
|
||||
// emoji and all non-ascii are escaped to ensure it works in every css file.
|
||||
className.value = "😱🦄😍";
|
||||
className.value; // => '😱🦄😍'
|
||||
className.toString(); // => '.\\1F631\\1F984\\1F60D'
|
||||
|
||||
// you can control the escape sequence if you want, or do bad bad things
|
||||
className.setPropertyAndEscape('value', 'xxxx', 'yyyy');
|
||||
className.value; // => "xxxx"
|
||||
className.toString(); // => ".yyyy"
|
||||
|
||||
// Pass a value directly through to the css output without escaping it.
|
||||
className.setPropertyWithoutEscape('value', '$REPLACE_ME$');
|
||||
className.value; // => "$REPLACE_ME$"
|
||||
className.toString(); // => ".$REPLACE_ME$"
|
||||
|
||||
// The biggest changes are to the Attribute class
|
||||
// passing quoteMark explicitly is required to avoid a deprecation warning.
|
||||
let attr = selectorParser.attribute({attribute: "id", operator: "=", value: "a-value", quoteMark: null});
|
||||
attr.toString(); // => "[id=a-value]"
|
||||
// Get the value with quotes on it and any necessary escapes.
|
||||
// This is the same as reading attr.value in 3.x.
|
||||
attr.getQuotedValue(); // => "a-value";
|
||||
attr.quoteMark; // => null
|
||||
|
||||
// Add quotes to an attribute's value.
|
||||
attr.quoteMark = "'"; // This is all that's required.
|
||||
attr.toString(); // => "[id='a-value']"
|
||||
attr.quoted; // => true
|
||||
// The value is still the same, only the quotes have changed.
|
||||
attr.value; // => a-value
|
||||
attr.getQuotedValue(); // => "'a-value'";
|
||||
|
||||
// deprecated assignment, no warning because there's no escapes
|
||||
attr.value = "new-value";
|
||||
// no quote mark is needed so it is removed
|
||||
attr.getQuotedValue(); // => "new-value";
|
||||
|
||||
// deprecated assignment,
|
||||
attr.value = "\"a 'single quoted' value\"";
|
||||
// > (node:27859) DeprecationWarning: Assigning an attribute a value containing characters that might need to be escaped is deprecated. Call attribute.setValue() instead.
|
||||
attr.getQuotedValue(); // => '"a \'single quoted\' value"';
|
||||
// quote mark inferred from first and last characters.
|
||||
attr.quoteMark; // => '"'
|
||||
|
||||
// setValue takes options to make manipulating the value simple.
|
||||
attr.setValue('foo', {smart: true});
|
||||
// foo doesn't require any escapes or quotes.
|
||||
attr.toString(); // => '[id=foo]'
|
||||
attr.quoteMark; // => null
|
||||
|
||||
// An explicit quote mark can be specified
|
||||
attr.setValue('foo', {quoteMark: '"'});
|
||||
attr.toString(); // => '[id="foo"]'
|
||||
|
||||
// preserves quote mark by default
|
||||
attr.setValue('bar');
|
||||
attr.toString(); // => '[id="bar"]'
|
||||
attr.quoteMark = null;
|
||||
attr.toString(); // => '[id=bar]'
|
||||
|
||||
// with no arguments, it preserves quote mark even when it's not a great idea
|
||||
attr.setValue('a value \n that should be quoted');
|
||||
attr.toString(); // => '[id=a\\ value\\ \\A\\ that\\ should\\ be\\ quoted]'
|
||||
|
||||
// smart preservation with a specified default
|
||||
attr.setValue('a value \n that should be quoted', {smart: true, preferCurrentQuoteMark: true, quoteMark: "'"});
|
||||
// => "[id='a value \\A that should be quoted']"
|
||||
attr.quoteMark = '"';
|
||||
// => '[id="a value \\A that should be quoted"]'
|
||||
|
||||
// this keeps double quotes because it wants to quote the value and the existing value has double quotes.
|
||||
attr.setValue('this should be quoted', {smart: true, preferCurrentQuoteMark: true, quoteMark: "'"});
|
||||
// => '[id="this should be quoted"]'
|
||||
|
||||
// picks single quotes because the value has double quotes
|
||||
attr.setValue('a "double quoted" value', {smart: true, preferCurrentQuoteMark: true, quoteMark: "'"});
|
||||
// => "[id='a "double quoted" value']"
|
||||
|
||||
// setPropertyAndEscape lets you do anything you want. Even things that are a bad idea and illegal.
|
||||
attr.setPropertyAndEscape('value', 'xxxx', 'the password is 42');
|
||||
attr.value; // => "xxxx"
|
||||
attr.toString(); // => "[id=the password is 42]"
|
||||
|
||||
// Pass a value directly through to the css output without escaping it.
|
||||
attr.setPropertyWithoutEscape('value', '$REPLACEMENT$');
|
||||
attr.value; // => "$REPLACEMENT$"
|
||||
attr.toString(); // => "[id=$REPLACEMENT$]"
|
||||
```
|
||||
|
||||
# 3.1.2
|
||||
|
||||
* Fix: Removed dot-prop dependency since it's no longer written in es5.
|
||||
|
||||
# 3.1.1
|
||||
|
||||
* Fix: typescript definitions weren't in the published package.
|
||||
|
||||
# 3.1.0
|
||||
|
||||
* Fixed numerous bugs in attribute nodes relating to the handling of comments
|
||||
and whitespace. There's significant changes to `attrNode.spaces` and `attrNode.raws` since the `3.0.0` release.
|
||||
* Added `Attribute#offsetOf(part)` to get the offset location of
|
||||
attribute parts like `"operator"` and `"value"`. This is most
|
||||
often added to `Attribute#sourceIndex` for error reporting.
|
||||
|
||||
# 3.0.0
|
||||
|
||||
## Breaking changes
|
||||
|
||||
* Some tweaks to the tokenizer/attribute selector parsing mean that whitespace
|
||||
locations might be slightly different to the 2.x code.
|
||||
* Better attribute selector parsing with more validation; postcss-selector-parser
|
||||
no longer uses regular expressions to parse attribute selectors.
|
||||
* Added an async API (thanks to @jacobp100); the default `process` API is now
|
||||
async, and the sync API is now accessed through `processSync` instead.
|
||||
* `process()` and `processSync()` now return a string instead of the Processor
|
||||
instance.
|
||||
* Tweaks handling of Less interpolation (thanks to @jwilsson).
|
||||
* Removes support for Node 0.12.
|
||||
|
||||
## Other changes
|
||||
|
||||
* `ast()` and `astSync()` methods have been added to the `Processor`. These
|
||||
return the `Root` node of the selectors after processing them.
|
||||
* `transform()` and `transformSync()` methods have been added to the
|
||||
`Processor`. These return the value returned by the processor callback
|
||||
after processing the selectors.
|
||||
* Set the parent when inserting a node (thanks to @chriseppstein).
|
||||
* Correctly adjust indices when using insertBefore/insertAfter (thanks to @tivac).
|
||||
* Fixes handling of namespaces with qualified tag selectors.
|
||||
* `process`, `ast` and `transform` (and their sync variants) now accept a
|
||||
`postcss` rule node. When provided, better errors are generated and selector
|
||||
processing is automatically set back to the rule selector (unless the `updateSelector` option is set to `false`.)
|
||||
* Now more memory efficient when tokenizing selectors.
|
||||
|
||||
### Upgrade hints
|
||||
|
||||
The pattern of:
|
||||
|
||||
`rule.selector = processor.process(rule.selector).result.toString();`
|
||||
|
||||
is now:
|
||||
|
||||
`processor.processSync(rule)`
|
||||
|
||||
# 2.2.3
|
||||
|
||||
* Resolves an issue where the parser would not reduce multiple spaces between an
|
||||
ampersand and another simple selector in lossy mode (thanks to @adam-26).
|
||||
|
||||
# 2.2.2
|
||||
|
||||
* No longer hangs on an unescaped semicolon; instead the parser will throw
|
||||
an exception for these cases.
|
||||
|
||||
# 2.2.1
|
||||
|
||||
* Allows a consumer to specify whitespace tokens when creating a new Node
|
||||
(thanks to @Semigradsky).
|
||||
|
||||
# 2.2.0
|
||||
|
||||
* Added a new option to normalize whitespace when parsing the selector string
|
||||
(thanks to @adam-26).
|
||||
|
||||
# 2.1.1
|
||||
|
||||
* Better unquoted value handling within attribute selectors
|
||||
(thanks to @evilebottnawi).
|
||||
|
||||
# 2.1.0
|
||||
|
||||
* Added: Use string constants for all node types & expose them on the main
|
||||
parser instance (thanks to @Aweary).
|
||||
|
||||
# 2.0.0
|
||||
|
||||
This release contains the following breaking changes:
|
||||
|
||||
* Renamed all `eachInside` iterators to `walk`. For example, `eachTag` is now
|
||||
`walkTags`, and `eachInside` is now `walk`.
|
||||
* Renamed `Node#removeSelf()` to `Node#remove()`.
|
||||
* Renamed `Container#remove()` to `Container#removeChild()`.
|
||||
* Renamed `Node#raw` to `Node#raws` (thanks to @davidtheclark).
|
||||
* Now parses `&` as the *nesting* selector, rather than a *tag* selector.
|
||||
* Fixes misinterpretation of Sass interpolation (e.g. `#{foo}`) as an
|
||||
id selector (thanks to @davidtheclark).
|
||||
|
||||
and;
|
||||
|
||||
* Fixes parsing of attribute selectors with equals signs in them
|
||||
(e.g. `[data-attr="foo=bar"]`) (thanks to @montmanu).
|
||||
* Adds `quoted` and `raw.unquoted` properties to attribute nodes
|
||||
(thanks to @davidtheclark).
|
||||
|
||||
# 1.3.3
|
||||
|
||||
* Fixes an infinite loop on `)` and `]` tokens when they had no opening pairs.
|
||||
Now postcss-selector-parser will throw when it encounters these lone tokens.
|
||||
|
||||
# 1.3.2
|
||||
|
||||
* Now uses plain integers rather than `str.charCodeAt(0)` for compiled builds.
|
||||
|
||||
# 1.3.1
|
||||
|
||||
* Update flatten to v1.x (thanks to @shinnn).
|
||||
|
||||
# 1.3.0
|
||||
|
||||
* Adds a new node type, `String`, to fix a crash on selectors such as
|
||||
`foo:bar("test")`.
|
||||
|
||||
# 1.2.1
|
||||
|
||||
* Fixes a crash when the parser encountered a trailing combinator.
|
||||
|
||||
# 1.2.0
|
||||
|
||||
* A more descriptive error is thrown when the parser expects to find a
|
||||
pseudo-class/pseudo-element (thanks to @ashelley).
|
||||
* Adds support for line/column locations for selector nodes, as well as a
|
||||
`Node#sourceIndex` method (thanks to @davidtheclark).
|
||||
|
||||
# 1.1.4
|
||||
|
||||
* Fixes a crash when a selector started with a `>` combinator. The module will
|
||||
now no longer throw if a selector has a leading/trailing combinator node.
|
||||
|
||||
# 1.1.3
|
||||
|
||||
* Fixes a crash on `@` tokens.
|
||||
|
||||
# 1.1.2
|
||||
|
||||
* Fixes an infinite loop caused by using parentheses in a non-pseudo element
|
||||
context.
|
||||
|
||||
# 1.1.1
|
||||
|
||||
* Fixes a crash when a backslash ended a selector string.
|
||||
|
||||
# 1.1.0
|
||||
|
||||
* Adds support for replacing multiple nodes at once with `replaceWith`
|
||||
(thanks to @jonathantneal).
|
||||
* Parser no longer throws on sequential IDs and trailing commas, to support
|
||||
parsing of selector hacks.
|
||||
|
||||
# 1.0.1
|
||||
|
||||
* Fixes using `insertAfter` and `insertBefore` during iteration.
|
||||
|
||||
# 1.0.0
|
||||
|
||||
* Adds `clone` and `replaceWith` methods to nodes.
|
||||
* Adds `insertBefore` and `insertAfter` to containers.
|
||||
* Stabilises API.
|
||||
|
||||
# 0.0.5
|
||||
|
||||
* Fixes crash on extra whitespace inside a pseudo selector's parentheses.
|
||||
* Adds sort function to the container class.
|
||||
* Enables the parser to pass its input through without transforming.
|
||||
* Iteration-safe `each` and `eachInside`.
|
||||
|
||||
# 0.0.4
|
||||
|
||||
* Tidy up redundant duplication.
|
||||
* Fixes a bug where the parser would loop infinitely on universal selectors
|
||||
inside pseudo selectors.
|
||||
* Adds `length` getter and `eachInside`, `map`, `reduce` to the container class.
|
||||
* When a selector has been removed from the tree, the root node will no longer
|
||||
cast it to a string.
|
||||
* Adds node type iterators to the container class (e.g. `eachComment`).
|
||||
* Adds filter function to the container class.
|
||||
* Adds split function to the container class.
|
||||
* Create new node types by doing `parser.id(opts)` etc.
|
||||
* Adds support for pseudo classes anywhere in the selector.
|
||||
|
||||
# 0.0.3
|
||||
|
||||
* Adds `next` and `prev` to the node class.
|
||||
* Adds `first` and `last` getters to the container class.
|
||||
* Adds `every` and `some` iterators to the container class.
|
||||
* Add `empty` alias for `removeAll`.
|
||||
* Combinators are now types of node.
|
||||
* Fixes the at method so that it is not an alias for `index`.
|
||||
* Tidy up creation of new nodes in the parser.
|
||||
* Refactors how namespaces are handled for consistency & less redundant code.
|
||||
* Refactors AST to use `nodes` exclusively, and eliminates excessive nesting.
|
||||
* Fixes nested pseudo parsing.
|
||||
* Fixes whitespace parsing.
|
||||
|
||||
# 0.0.2
|
||||
|
||||
* Adds support for namespace selectors.
|
||||
* Adds support for selectors joined by escaped spaces - such as `.\31\ 0`.
|
||||
|
||||
# 0.0.1
|
||||
|
||||
* Initial release.
|
||||
22
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/LICENSE-MIT
generated
vendored
Executable file
22
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/LICENSE-MIT
generated
vendored
Executable file
|
|
@ -0,0 +1,22 @@
|
|||
Copyright (c) Ben Briggs <beneb.info@gmail.com> (http://beneb.info)
|
||||
|
||||
Permission is hereby granted, free of charge, to any person
|
||||
obtaining a copy of this software and associated documentation
|
||||
files (the "Software"), to deal in the Software without
|
||||
restriction, including without limitation the rights to use,
|
||||
copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the
|
||||
Software is furnished to do so, subject to the following
|
||||
conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be
|
||||
included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
||||
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
||||
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
||||
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
||||
OTHER DEALINGS IN THE SOFTWARE.
|
||||
49
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/README.md
generated
vendored
Executable file
49
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/README.md
generated
vendored
Executable file
|
|
@ -0,0 +1,49 @@
|
|||
# postcss-selector-parser [](https://travis-ci.org/postcss/postcss-selector-parser)
|
||||
|
||||
> Selector parser with built in methods for working with selector strings.
|
||||
|
||||
## Install
|
||||
|
||||
With [npm](https://npmjs.com/package/postcss-selector-parser) do:
|
||||
|
||||
```
|
||||
npm install postcss-selector-parser
|
||||
```
|
||||
|
||||
## Quick Start
|
||||
|
||||
```js
|
||||
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:
|
||||
|
||||
```js
|
||||
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](API.md).
|
||||
|
||||
## Credits
|
||||
|
||||
* Huge thanks to Andrey Sitnik (@ai) for work on PostCSS which helped
|
||||
accelerate this module's development.
|
||||
|
||||
## License
|
||||
|
||||
MIT
|
||||
477
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/__tests__/attributes.js
generated
vendored
Executable file
477
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/__tests__/attributes.js
generated
vendored
Executable file
|
|
@ -0,0 +1,477 @@
|
|||
"use strict";
|
||||
|
||||
var _process = _interopRequireDefault(require("process"));
|
||||
|
||||
var _attribute = _interopRequireDefault(require("../selectors/attribute"));
|
||||
|
||||
var _helpers = require("./util/helpers");
|
||||
|
||||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
||||
|
||||
_process.default.throwDeprecation = true;
|
||||
(0, _helpers.test)('attribute selector', '[href]', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].attribute, 'href');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'attribute');
|
||||
t.falsy(tree.nodes[0].nodes[0].quoted);
|
||||
});
|
||||
(0, _helpers.test)('attribute selector spaces (before)', '[ href]', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].attribute, 'href');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].spaces.attribute.before, ' ');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'attribute');
|
||||
t.falsy(tree.nodes[0].nodes[0].quoted);
|
||||
});
|
||||
(0, _helpers.test)('attribute selector spaces (after)', '[href ]', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].attribute, 'href');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].spaces.attribute.after, ' ');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'attribute');
|
||||
t.falsy(tree.nodes[0].nodes[0].quoted);
|
||||
});
|
||||
(0, _helpers.test)('attribute selector spaces with namespace (both)', '[ foo|bar ]', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].ns, 'foo');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].attribute, 'bar');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].spaces.attribute.before, ' ');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].spaces.attribute.after, ' ');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'attribute');
|
||||
t.falsy(tree.nodes[0].nodes[0].quoted);
|
||||
});
|
||||
(0, _helpers.test)('attribute selector spaces (both)', '[ href ]', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].attribute, 'href');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].spaces.attribute.before, ' ');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].spaces.attribute.after, ' ');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'attribute');
|
||||
t.falsy(tree.nodes[0].nodes[0].quoted);
|
||||
});
|
||||
(0, _helpers.test)('multiple attribute selectors', '[href][class][name]', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].attribute, 'href');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].attribute, 'class');
|
||||
t.deepEqual(tree.nodes[0].nodes[2].attribute, 'name');
|
||||
});
|
||||
(0, _helpers.test)('select elements with or without a namespace', '[*|href]', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].namespace, '*');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].attribute, 'href');
|
||||
});
|
||||
(0, _helpers.test)('namespace with escapes', '[\\31 \\#\\32 |href]', function (t, tree) {
|
||||
var attr = tree.nodes[0].nodes[0];
|
||||
t.deepEqual(attr.namespace, '1#2');
|
||||
t.deepEqual(attr.raws.namespace, '\\31 \\#\\32 ');
|
||||
attr.namespace = "foo";
|
||||
t.deepEqual(attr.namespace, 'foo');
|
||||
t.deepEqual(attr.raws.namespace, undefined);
|
||||
attr.namespace = "1";
|
||||
t.deepEqual(attr.namespace, '1');
|
||||
t.deepEqual(attr.raws.namespace, '\\31');
|
||||
});
|
||||
(0, _helpers.test)('attribute selector with a empty value', '[href=""]', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].attribute, 'href');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].operator, '=');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, '');
|
||||
t.true(tree.nodes[0].nodes[0].quoted);
|
||||
});
|
||||
(0, _helpers.test)('attribute selector with a value', '[name=james]', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].attribute, 'name');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].operator, '=');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, 'james');
|
||||
t.falsy(tree.nodes[0].nodes[0].quoted);
|
||||
});
|
||||
(0, _helpers.test)('attribute selector with quoted value', '[name="james"]', function (t, tree) {
|
||||
var attr = tree.nodes[0].nodes[0];
|
||||
t.deepEqual(attr.attribute, 'name');
|
||||
t.deepEqual(attr.operator, '=');
|
||||
t.deepEqual(attr.value, 'james');
|
||||
t.deepEqual(attr.quoteMark, '"');
|
||||
t.truthy(attr.quoted);
|
||||
t.deepEqual(attr.getQuotedValue(), '"james"');
|
||||
});
|
||||
(0, _helpers.test)('attribute selector with escaped quote', '[title="Something \\"weird\\""]', function (t, tree) {
|
||||
var attr = tree.nodes[0].nodes[0];
|
||||
t.deepEqual(attr.value, 'Something "weird"');
|
||||
t.deepEqual(attr.getQuotedValue(), '\"Something \\"weird\\"\"');
|
||||
t.deepEqual(attr.getQuotedValue({
|
||||
smart: true
|
||||
}), '\'Something "weird"\'');
|
||||
t.deepEqual(attr.getQuotedValue({
|
||||
quoteMark: null
|
||||
}), 'Something\\ \\"weird\\"');
|
||||
t.deepEqual(attr.quoteMark, '"');
|
||||
t.truthy(attr.quoted);
|
||||
t.deepEqual(attr.raws.value, '"Something \\"weird\\""');
|
||||
t.deepEqual(tree.toString(), '[title="Something \\"weird\\""]');
|
||||
});
|
||||
(0, _helpers.test)('attribute selector with escaped colon', '[ng\\:cloak]', function (t, tree) {
|
||||
t.deepEqual(tree.toString(), '[ng\\:cloak]');
|
||||
var attr = tree.nodes[0].nodes[0];
|
||||
t.deepEqual(attr.raws.attribute, 'ng\\:cloak');
|
||||
t.deepEqual(attr.attribute, 'ng:cloak');
|
||||
});
|
||||
(0, _helpers.test)('attribute selector with short hex escape', '[ng\\3a cloak]', function (t, tree) {
|
||||
t.deepEqual(tree.toString(), '[ng\\3a cloak]');
|
||||
var attr = tree.nodes[0].nodes[0];
|
||||
t.deepEqual(attr.raws.attribute, 'ng\\3a cloak');
|
||||
t.deepEqual(attr.attribute, 'ng:cloak');
|
||||
});
|
||||
(0, _helpers.test)('attribute selector with hex escape', '[ng\\00003acloak]', function (t, tree) {
|
||||
t.deepEqual(tree.toString(), '[ng\\00003acloak]');
|
||||
var attr = tree.nodes[0].nodes[0];
|
||||
t.deepEqual(attr.raws.attribute, 'ng\\00003acloak');
|
||||
t.deepEqual(attr.attribute, 'ng:cloak');
|
||||
});
|
||||
(0, _helpers.test)('assign attribute name requiring escape', '[ng\\:cloak]', function (t, tree) {
|
||||
var attr = tree.nodes[0].nodes[0];
|
||||
attr.attribute = "ng:foo";
|
||||
t.deepEqual(attr.raws.attribute, 'ng\\:foo');
|
||||
t.deepEqual(attr.attribute, 'ng:foo');
|
||||
t.deepEqual(tree.toString(), '[ng\\:foo]');
|
||||
});
|
||||
(0, _helpers.test)('multiple attribute selectors + combinator', '[href][class][name] h1 > h2', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[2].attribute, 'name');
|
||||
t.deepEqual(tree.nodes[0].nodes[3].value, ' ');
|
||||
t.deepEqual(tree.nodes[0].nodes[5].value, '>');
|
||||
t.deepEqual(tree.nodes[0].nodes[6].value, 'h2');
|
||||
});
|
||||
(0, _helpers.test)('attribute, class, combinator', '[href] > h2.test', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].attribute, 'href');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].value, '>');
|
||||
t.deepEqual(tree.nodes[0].nodes[2].value, 'h2');
|
||||
t.deepEqual(tree.nodes[0].nodes[3].value, 'test');
|
||||
});
|
||||
(0, _helpers.test)('attribute selector with quoted value & combinator', '[name="james"] > h1', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, 'james');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].quoteMark, '"');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].value, '>');
|
||||
t.deepEqual(tree.nodes[0].nodes[2].value, 'h1');
|
||||
});
|
||||
(0, _helpers.test)('multiple quoted attribute selectors', '[href*="test.com"][rel=\'external\'][id][class~="test"] > [name]', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].attribute, 'href');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, 'test.com');
|
||||
t.is(tree.nodes[0].nodes[0].quoteMark, '"');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].attribute, 'rel');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].value, 'external');
|
||||
t.is(tree.nodes[0].nodes[1].quoteMark, "'");
|
||||
t.deepEqual(tree.nodes[0].nodes[2].attribute, 'id');
|
||||
t.falsy(tree.nodes[0].nodes[2].value, 'should not have a value');
|
||||
t.is(tree.nodes[0].nodes[2].quoteMark, undefined, 'should not have a quoteMark set');
|
||||
t.deepEqual(tree.nodes[0].nodes[3].attribute, 'class');
|
||||
t.deepEqual(tree.nodes[0].nodes[3].value, 'test');
|
||||
t.deepEqual(tree.nodes[0].nodes[3].quoteMark, '"');
|
||||
t.deepEqual(tree.nodes[0].nodes[4].value, '>');
|
||||
t.deepEqual(tree.nodes[0].nodes[5].attribute, 'name');
|
||||
t.falsy(tree.nodes[0].nodes[5].value, 'should not have a value');
|
||||
t.is(tree.nodes[0].nodes[5].quoteMark, undefined, 'should not have a quoteMark set');
|
||||
});
|
||||
(0, _helpers.test)('more attribute operators', '[href*=test],[href^=test],[href$=test],[href|=test]', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].operator, '*=');
|
||||
t.deepEqual(tree.nodes[1].nodes[0].operator, '^=');
|
||||
t.deepEqual(tree.nodes[2].nodes[0].operator, '$=');
|
||||
t.deepEqual(tree.nodes[3].nodes[0].operator, '|=');
|
||||
});
|
||||
(0, _helpers.test)('attribute selector with quoted value containing "="', '[data-weird-attr="Something=weird"]', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].attribute, 'data-weird-attr');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].operator, '=');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, 'Something=weird');
|
||||
t.is(tree.nodes[0].nodes[0].quoteMark, '"');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].getQuotedValue(), '"Something=weird"');
|
||||
});
|
||||
var selector = '[data-weird-attr*="Something=weird"],' + '[data-weird-attr^="Something=weird"],' + '[data-weird-attr$="Something=weird"],' + '[data-weird-attr|="Something=weird"]';
|
||||
(0, _helpers.test)('more attribute selector with quoted value containing "="', selector, function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].attribute, 'data-weird-attr');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].operator, '*=');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, 'Something=weird');
|
||||
t.deepEqual(tree.nodes[1].nodes[0].attribute, 'data-weird-attr');
|
||||
t.deepEqual(tree.nodes[1].nodes[0].operator, '^=');
|
||||
t.deepEqual(tree.nodes[1].nodes[0].value, 'Something=weird');
|
||||
t.deepEqual(tree.nodes[2].nodes[0].attribute, 'data-weird-attr');
|
||||
t.deepEqual(tree.nodes[2].nodes[0].operator, '$=');
|
||||
t.deepEqual(tree.nodes[2].nodes[0].value, 'Something=weird');
|
||||
t.deepEqual(tree.nodes[3].nodes[0].attribute, 'data-weird-attr');
|
||||
t.deepEqual(tree.nodes[3].nodes[0].operator, '|=');
|
||||
t.deepEqual(tree.nodes[3].nodes[0].value, 'Something=weird');
|
||||
});
|
||||
(0, _helpers.test)('attribute selector with quoted value containing multiple "="', '[data-weird-attr="Something=weird SomethingElse=weirder"]', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].attribute, 'data-weird-attr');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].operator, '=');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, 'Something=weird SomethingElse=weirder');
|
||||
});
|
||||
selector = '[data-weird-attr*="Something=weird SomethingElse=weirder"],' + '[data-weird-attr^="Something=weird SomethingElse=weirder"],' + '[data-weird-attr$="Something=weird SomethingElse=weirder"],' + '[data-weird-attr|="Something=weird SomethingElse=weirder"]';
|
||||
(0, _helpers.test)('more attribute selector with quoted value containing multiple "="', selector, function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].attribute, 'data-weird-attr');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].operator, '*=');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, 'Something=weird SomethingElse=weirder');
|
||||
t.deepEqual(tree.nodes[1].nodes[0].attribute, 'data-weird-attr');
|
||||
t.deepEqual(tree.nodes[1].nodes[0].operator, '^=');
|
||||
t.deepEqual(tree.nodes[1].nodes[0].value, 'Something=weird SomethingElse=weirder');
|
||||
t.deepEqual(tree.nodes[2].nodes[0].attribute, 'data-weird-attr');
|
||||
t.deepEqual(tree.nodes[2].nodes[0].operator, '$=');
|
||||
t.deepEqual(tree.nodes[2].nodes[0].value, 'Something=weird SomethingElse=weirder');
|
||||
t.deepEqual(tree.nodes[3].nodes[0].attribute, 'data-weird-attr');
|
||||
t.deepEqual(tree.nodes[3].nodes[0].operator, '|=');
|
||||
t.deepEqual(tree.nodes[3].nodes[0].value, 'Something=weird SomethingElse=weirder');
|
||||
});
|
||||
(0, _helpers.test)('multiple attribute selectors with quoted value containing "="', '[data-weird-foo="foo=weird"][data-weird-bar="bar=weird"]', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].attribute, 'data-weird-foo');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].operator, '=');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, 'foo=weird');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].attribute, 'data-weird-bar');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].operator, '=');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].value, 'bar=weird');
|
||||
});
|
||||
(0, _helpers.test)('multiple attribute selectors with value containing escaped "="', '[data-weird-foo=foo\\=weird][data-weird-bar=bar\\3d weird]', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].attribute, 'data-weird-foo');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].operator, '=');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, 'foo=weird');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].attribute, 'data-weird-bar');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].operator, '=');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].value, 'bar=weird');
|
||||
});
|
||||
selector = '[data-weird-foo*="foo2=weirder"][data-weird-bar*="bar2=weirder"],' + '[data-weird-foo^="foo2=weirder"][data-weird-bar^="bar2=weirder"],' + '[data-weird-foo$="foo2=weirder"][data-weird-bar$="bar2=weirder"],' + '[data-weird-foo|="foo2=weirder"][data-weird-bar|="bar2=weirder"]';
|
||||
(0, _helpers.test)('more multiple attribute selectors with quoted value containing "="', selector, function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].attribute, 'data-weird-foo');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].operator, '*=');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, 'foo2=weirder');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].attribute, 'data-weird-bar');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].operator, '*=');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].value, 'bar2=weirder');
|
||||
t.deepEqual(tree.nodes[1].nodes[0].attribute, 'data-weird-foo');
|
||||
t.deepEqual(tree.nodes[1].nodes[0].operator, '^=');
|
||||
t.deepEqual(tree.nodes[1].nodes[0].value, 'foo2=weirder');
|
||||
t.deepEqual(tree.nodes[1].nodes[1].attribute, 'data-weird-bar');
|
||||
t.deepEqual(tree.nodes[1].nodes[1].operator, '^=');
|
||||
t.deepEqual(tree.nodes[1].nodes[1].value, 'bar2=weirder');
|
||||
t.deepEqual(tree.nodes[2].nodes[0].attribute, 'data-weird-foo');
|
||||
t.deepEqual(tree.nodes[2].nodes[0].operator, '$=');
|
||||
t.deepEqual(tree.nodes[2].nodes[0].value, 'foo2=weirder');
|
||||
t.deepEqual(tree.nodes[2].nodes[1].attribute, 'data-weird-bar');
|
||||
t.deepEqual(tree.nodes[2].nodes[1].operator, '$=');
|
||||
t.deepEqual(tree.nodes[2].nodes[1].value, 'bar2=weirder');
|
||||
t.deepEqual(tree.nodes[3].nodes[0].attribute, 'data-weird-foo');
|
||||
t.deepEqual(tree.nodes[3].nodes[0].operator, '|=');
|
||||
t.deepEqual(tree.nodes[3].nodes[0].value, 'foo2=weirder');
|
||||
t.deepEqual(tree.nodes[3].nodes[1].attribute, 'data-weird-bar');
|
||||
t.deepEqual(tree.nodes[3].nodes[1].operator, '|=');
|
||||
t.deepEqual(tree.nodes[3].nodes[1].value, 'bar2=weirder');
|
||||
});
|
||||
(0, _helpers.test)('multiple attribute selectors with quoted value containing multiple "="', '[data-weird-foo="foo1=weirder foo2=weirder"][data-weird-bar="bar1=weirder bar2=weirder"]', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].attribute, 'data-weird-foo');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].operator, '=');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, 'foo1=weirder foo2=weirder');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].attribute, 'data-weird-bar');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].operator, '=');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].value, 'bar1=weirder bar2=weirder');
|
||||
});
|
||||
selector = '[data-weird-foo*="foo1=weirder foo2=weirder"][data-weird-bar*="bar1=weirder bar2=weirder"],' + '[data-weird-foo^="foo1=weirder foo2=weirder"][data-weird-bar^="bar1=weirder bar2=weirder"],' + '[data-weird-foo$="foo1=weirder foo2=weirder"][data-weird-bar$="bar1=weirder bar2=weirder"],' + '[data-weird-foo|="foo1=weirder foo2=weirder"][data-weird-bar|="bar1=weirder bar2=weirder"]';
|
||||
(0, _helpers.test)('more multiple attribute selectors with quoted value containing multiple "="', selector, function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].attribute, 'data-weird-foo');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].operator, '*=');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, 'foo1=weirder foo2=weirder');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].attribute, 'data-weird-bar');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].operator, '*=');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].value, 'bar1=weirder bar2=weirder');
|
||||
t.deepEqual(tree.nodes[1].nodes[0].attribute, 'data-weird-foo');
|
||||
t.deepEqual(tree.nodes[1].nodes[0].operator, '^=');
|
||||
t.deepEqual(tree.nodes[1].nodes[0].value, 'foo1=weirder foo2=weirder');
|
||||
t.deepEqual(tree.nodes[1].nodes[1].attribute, 'data-weird-bar');
|
||||
t.deepEqual(tree.nodes[1].nodes[1].operator, '^=');
|
||||
t.deepEqual(tree.nodes[1].nodes[1].value, 'bar1=weirder bar2=weirder');
|
||||
t.deepEqual(tree.nodes[2].nodes[0].attribute, 'data-weird-foo');
|
||||
t.deepEqual(tree.nodes[2].nodes[0].operator, '$=');
|
||||
t.deepEqual(tree.nodes[2].nodes[0].value, 'foo1=weirder foo2=weirder');
|
||||
t.deepEqual(tree.nodes[2].nodes[1].attribute, 'data-weird-bar');
|
||||
t.deepEqual(tree.nodes[2].nodes[1].operator, '$=');
|
||||
t.deepEqual(tree.nodes[2].nodes[1].value, 'bar1=weirder bar2=weirder');
|
||||
t.deepEqual(tree.nodes[3].nodes[0].attribute, 'data-weird-foo');
|
||||
t.deepEqual(tree.nodes[3].nodes[0].operator, '|=');
|
||||
t.deepEqual(tree.nodes[3].nodes[0].value, 'foo1=weirder foo2=weirder');
|
||||
t.deepEqual(tree.nodes[3].nodes[1].attribute, 'data-weird-bar');
|
||||
t.deepEqual(tree.nodes[3].nodes[1].operator, '|=');
|
||||
t.deepEqual(tree.nodes[3].nodes[1].value, 'bar1=weirder bar2=weirder');
|
||||
});
|
||||
(0, _helpers.test)('spaces in attribute selectors', 'h1[ href *= "test" ]', function (t, tree) {
|
||||
var attr = tree.nodes[0].nodes[1];
|
||||
t.deepEqual(attr.attribute, 'href');
|
||||
t.deepEqual(attr.spaces.attribute.before, ' ');
|
||||
t.deepEqual(attr.spaces.attribute.after, ' ');
|
||||
t.deepEqual(attr.operator, '*=');
|
||||
t.deepEqual(attr.spaces.operator.after, ' ');
|
||||
t.deepEqual(attr.value, 'test');
|
||||
t.deepEqual(attr.spaces.value.after, ' ');
|
||||
t.truthy(tree.nodes[0].nodes[1].quoted);
|
||||
});
|
||||
(0, _helpers.test)('insensitive attribute selector 1', '[href="test" i]', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, 'test');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].insensitive, true);
|
||||
t.deepEqual(tree.nodes[0].nodes[0].insensitive, true);
|
||||
});
|
||||
(0, _helpers.test)('insensitive attribute selector with a empty value', '[href="" i]', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].attribute, 'href');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].operator, '=');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, '');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].insensitive, true);
|
||||
t.true(tree.nodes[0].nodes[0].quoted);
|
||||
});
|
||||
(0, _helpers.test)('insensitive attribute selector 2', '[href=TEsT i ]', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, 'TEsT');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].insensitive, true);
|
||||
t.deepEqual(tree.nodes[0].nodes[0].spaces.value.after, ' ');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].spaces.insensitive.after, ' ');
|
||||
});
|
||||
(0, _helpers.test)('insensitive attribute selector 3', '[href=test i]', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, 'test');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].insensitive, true);
|
||||
});
|
||||
(0, _helpers.test)('capitalized insensitive attribute selector 3', '[href=test I]', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, 'test');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].insensitive, true);
|
||||
});
|
||||
(0, _helpers.test)('extraneous non-combinating whitespace', ' [href] , [class] ', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].attribute, 'href');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].spaces.before, ' ');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].spaces.after, ' ');
|
||||
t.deepEqual(tree.nodes[1].nodes[0].attribute, 'class');
|
||||
t.deepEqual(tree.nodes[1].nodes[0].spaces.before, ' ');
|
||||
t.deepEqual(tree.nodes[1].nodes[0].spaces.after, ' ');
|
||||
});
|
||||
(0, _helpers.test)('comments within attribute selectors', '[href/* wow */=/* wow */test]', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].attribute, 'href');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].operator, '=');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, 'test');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].raws.attribute, 'href/* wow */');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].raws.operator, '=/* wow */');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, 'test');
|
||||
});
|
||||
(0, _helpers.test)('comments within attribute selectors (2)', '[/* wow */href=test/* wow */]', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].attribute, 'href');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].operator, '=');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, 'test');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].raws.spaces.attribute.before, '/* wow */');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].operator, '=');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].raws.value, 'test/* wow */');
|
||||
});
|
||||
(0, _helpers.test)('comments within attribute selectors (3)', '[href=test/* wow */i]', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].attribute, 'href');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, 'testi');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].raws.value, 'test/* wow */i');
|
||||
t.falsy(tree.nodes[0].nodes[0].insensitive);
|
||||
});
|
||||
(0, _helpers.test)('comments within attribute selectors (4)', '[ /*before*/ href /* after-attr */ = /* after-operator */ te/*inside-value*/st/* wow */ /*omg*/i/*bbq*/ /*whodoesthis*/]', function (t, tree) {
|
||||
var attr = tree.nodes[0].nodes[0];
|
||||
t.deepEqual(attr.attribute, 'href');
|
||||
t.deepEqual(attr.value, 'test');
|
||||
t.deepEqual(attr.getQuotedValue(), 'test');
|
||||
t.deepEqual(attr.raws.value, 'te/*inside-value*/st');
|
||||
t.deepEqual(attr.raws.spaces.value.after, '/* wow */ /*omg*/');
|
||||
t.truthy(attr.insensitive);
|
||||
t.deepEqual(attr.offsetOf("attribute"), 13);
|
||||
t.deepEqual(attr.offsetOf("operator"), 35);
|
||||
t.deepEqual(attr.offsetOf("insensitive"), 95);
|
||||
t.deepEqual(attr.raws.spaces.insensitive.after, '/*bbq*/ /*whodoesthis*/');
|
||||
attr.value = "foo";
|
||||
t.is(attr.raws.value, undefined);
|
||||
});
|
||||
(0, _helpers.test)('non standard modifiers', '[href="foo" y]', function (t, tree) {
|
||||
var attr = tree.atPosition(1, 13);
|
||||
t.deepEqual(attr.insensitive, false);
|
||||
t.deepEqual(attr.insensitiveFlag, '');
|
||||
t.deepEqual(attr.raws.insensitiveFlag, 'y');
|
||||
t.deepEqual(tree.toString(), '[href="foo" y]');
|
||||
});
|
||||
(0, _helpers.test)('comment after insensitive(non space)', '[href="foo" i/**/]', function (t, tree) {
|
||||
// https://github.com/postcss/postcss-selector-parser/issues/150
|
||||
var attr = tree.atPosition(1, 13);
|
||||
t.deepEqual(attr.insensitive, true);
|
||||
t.deepEqual(attr.insensitiveFlag, 'i');
|
||||
t.is(attr.raws.insensitiveFlag, undefined);
|
||||
t.deepEqual(attr.raws.spaces.insensitive.after, '/**/');
|
||||
t.deepEqual(tree.toString(), '[href="foo" i/**/]');
|
||||
});
|
||||
(0, _helpers.test)('comment after insensitive(space after)', '[href="foo" i/**/ ]', function (t, tree) {
|
||||
var attr = tree.atPosition(1, 13);
|
||||
t.deepEqual(attr.insensitive, true);
|
||||
t.deepEqual(attr.insensitiveFlag, 'i');
|
||||
t.deepEqual(attr.raws.spaces.insensitive.after, '/**/ ');
|
||||
t.deepEqual(tree.toString(), '[href="foo" i/**/ ]');
|
||||
});
|
||||
(0, _helpers.test)('comment after insensitive(space before)', '[href="foo" i /**/]', function (t, tree) {
|
||||
var attr = tree.atPosition(1, 13);
|
||||
t.deepEqual(attr.insensitive, true);
|
||||
t.deepEqual(attr.insensitiveFlag, 'i');
|
||||
t.deepEqual(attr.raws.spaces.insensitive.after, ' /**/');
|
||||
t.deepEqual(tree.toString(), '[href="foo" i /**/]');
|
||||
});
|
||||
var testDeprecation = (0, _helpers.nodeVersionAtLeast)('7.0.0') || (0, _helpers.nodeVersionBefore)('6.0.0') ? _helpers.test : _helpers.test.skip;
|
||||
testDeprecation('deprecated constructor', '', function (t) {
|
||||
t.throws(function () {
|
||||
return new _attribute.default({
|
||||
value: '"foo"',
|
||||
attribute: "data-bar"
|
||||
});
|
||||
}, "Constructing an Attribute selector with a value without specifying quoteMark is deprecated. Note: The value should be unescaped now.");
|
||||
});
|
||||
testDeprecation('deprecated get of raws.unquoted ', '', function (t) {
|
||||
t.throws(function () {
|
||||
var attr = new _attribute.default({
|
||||
value: 'foo',
|
||||
quoteMark: '"',
|
||||
attribute: "data-bar"
|
||||
});
|
||||
return attr.raws.unquoted;
|
||||
}, "attr.raws.unquoted is deprecated. Call attr.value instead.");
|
||||
});
|
||||
testDeprecation('deprecated set of raws.unquoted ', '', function (t) {
|
||||
t.throws(function () {
|
||||
var attr = new _attribute.default({
|
||||
value: 'foo',
|
||||
quoteMark: '"',
|
||||
attribute: "data-bar"
|
||||
});
|
||||
attr.raws.unquoted = 'fooooo';
|
||||
}, "Setting attr.raws.unquoted is deprecated and has no effect. attr.value is unescaped by default now.");
|
||||
});
|
||||
testDeprecation('smart quotes', '[data-foo=bar]', function (t, tree) {
|
||||
var attr = tree.nodes[0].nodes[0];
|
||||
attr.setValue('changed', {
|
||||
quoteMark: '"'
|
||||
});
|
||||
t.deepEqual(attr.toString(), '[data-foo="changed"]');
|
||||
attr.setValue('changed again', {
|
||||
quoteMark: "'",
|
||||
preferCurrentQuoteMark: true
|
||||
});
|
||||
t.deepEqual(attr.toString(), '[data-foo="changed again"]');
|
||||
attr.setValue('smart-ident', {
|
||||
smart: true
|
||||
});
|
||||
t.deepEqual(attr.toString(), '[data-foo=smart-ident]');
|
||||
attr.setValue('smart quoted', {
|
||||
smart: true
|
||||
});
|
||||
t.deepEqual(attr.toString(), '[data-foo=smart\\ quoted]');
|
||||
attr.setValue('smart quoted three spaces', {
|
||||
smart: true
|
||||
});
|
||||
t.deepEqual(attr.toString(), '[data-foo="smart quoted three spaces"]');
|
||||
attr.setValue('smart quoted three spaces', {
|
||||
smart: true,
|
||||
quoteMark: "'"
|
||||
});
|
||||
t.deepEqual(attr.toString(), "[data-foo='smart quoted three spaces']");
|
||||
attr.setValue("smart with 'single quotes'", {
|
||||
smart: true
|
||||
});
|
||||
t.deepEqual(attr.toString(), "[data-foo=\"smart with 'single quotes'\"]");
|
||||
attr.setValue('smart with "double quotes"', {
|
||||
smart: true
|
||||
});
|
||||
t.deepEqual(attr.toString(), "[data-foo='smart with \"double quotes\"']");
|
||||
});
|
||||
testDeprecation('set Attribute#quoteMark', '[data-foo=bar]', function (t, tree) {
|
||||
var attr = tree.nodes[0].nodes[0];
|
||||
attr.quoteMark = '"';
|
||||
t.deepEqual(attr.toString(), '[data-foo="bar"]');
|
||||
attr.quoteMark = "'";
|
||||
t.deepEqual(attr.toString(), "[data-foo='bar']");
|
||||
attr.quoteMark = null;
|
||||
t.deepEqual(attr.toString(), "[data-foo=bar]");
|
||||
attr.value = "has space";
|
||||
t.deepEqual(attr.toString(), "[data-foo=has\\ space]");
|
||||
attr.quoteMark = '"';
|
||||
t.deepEqual(attr.toString(), '[data-foo="has space"]');
|
||||
});
|
||||
216
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/__tests__/classes.js
generated
vendored
Executable file
216
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/__tests__/classes.js
generated
vendored
Executable file
|
|
@ -0,0 +1,216 @@
|
|||
"use strict";
|
||||
|
||||
var _helpers = require("./util/helpers");
|
||||
|
||||
(0, _helpers.test)('class name', '.one', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, 'one');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'class');
|
||||
});
|
||||
(0, _helpers.test)('multiple class names', '.one.two.three', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, 'one');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].value, 'two');
|
||||
t.deepEqual(tree.nodes[0].nodes[2].value, 'three');
|
||||
});
|
||||
(0, _helpers.test)('qualified class', 'button.btn-primary', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'tag');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].type, 'class');
|
||||
});
|
||||
(0, _helpers.test)('escaped numbers in class name', '.\\31\\ 0', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'class');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, '1 0');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].raws.value, '\\31\\ 0');
|
||||
});
|
||||
(0, _helpers.test)('extraneous non-combinating whitespace', ' .h1 , .h2 ', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, 'h1');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].spaces.before, ' ');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].spaces.after, ' ');
|
||||
t.deepEqual(tree.nodes[1].nodes[0].value, 'h2');
|
||||
t.deepEqual(tree.nodes[1].nodes[0].spaces.before, ' ');
|
||||
t.deepEqual(tree.nodes[1].nodes[0].spaces.after, ' ');
|
||||
});
|
||||
(0, _helpers.test)('Less interpolation within a class', '.foo@{bar}', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes.length, 1);
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'class');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, 'foo@{bar}');
|
||||
});
|
||||
(0, _helpers.test)('ClassName#set value', ".fo\\o", function (t, selectors) {
|
||||
var className = selectors.first.first;
|
||||
t.deepEqual(className.raws, {
|
||||
value: "fo\\o"
|
||||
});
|
||||
className.value = "bar";
|
||||
t.deepEqual(className.raws, {});
|
||||
});
|
||||
(0, _helpers.test)('escaped dot in class name', '.foo\\.bar', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'class');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, 'foo.bar');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].raws.value, 'foo\\.bar');
|
||||
});
|
||||
(0, _helpers.test)('class selector with escaping', '.♥', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, '♥');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'class');
|
||||
});
|
||||
(0, _helpers.test)('class selector with escaping (1)', '.©', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, '©');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'class');
|
||||
});
|
||||
(0, _helpers.test)('class selector with escaping (2)', '.“‘’”', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, '“‘’”');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'class');
|
||||
});
|
||||
(0, _helpers.test)('class selector with escaping (3)', '.☺☃', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, '☺☃');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'class');
|
||||
});
|
||||
(0, _helpers.test)('class selector with escaping (4)', '.⌘⌥', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, '⌘⌥');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'class');
|
||||
});
|
||||
(0, _helpers.test)('class selector with escaping (5)', '.𝄞♪♩♫♬', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, '𝄞♪♩♫♬');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'class');
|
||||
});
|
||||
(0, _helpers.test)('class selector with escaping (6)', '.💩', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, '💩');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'class');
|
||||
});
|
||||
(0, _helpers.test)('class selector with escaping (7)', '.\\?', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, '?');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'class');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].raws.value, '\\?');
|
||||
});
|
||||
(0, _helpers.test)('class selector with escaping (8)', '.\\@', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, '@');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'class');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].raws.value, '\\@');
|
||||
});
|
||||
(0, _helpers.test)('class selector with escaping (9)', '.\\.', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, '.');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'class');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].raws.value, '\\.');
|
||||
});
|
||||
(0, _helpers.test)('class selector with escaping (10)', '.\\3A \\)', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, ':)');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'class');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].raws.value, '\\3A \\)');
|
||||
});
|
||||
(0, _helpers.test)('class selector with escaping (11)', '.\\3A \\`\\(', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, ':`(');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'class');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].raws.value, '\\3A \\`\\(');
|
||||
});
|
||||
(0, _helpers.test)('class selector with escaping (12)', '.\\31 23', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, '123');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'class');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].raws.value, '\\31 23');
|
||||
});
|
||||
(0, _helpers.test)('class selector with escaping (13)', '.\\31 a2b3c', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, '1a2b3c');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'class');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].raws.value, '\\31 a2b3c');
|
||||
});
|
||||
(0, _helpers.test)('class selector with escaping (14)', '.\\<p\\>', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, '<p>');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'class');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].raws.value, '\\<p\\>');
|
||||
});
|
||||
(0, _helpers.test)('class selector with escaping (15)', '.\\<\\>\\<\\<\\<\\>\\>\\<\\>', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, '<><<<>><>');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'class');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].raws.value, '\\<\\>\\<\\<\\<\\>\\>\\<\\>');
|
||||
});
|
||||
(0, _helpers.test)('class selector with escaping (16)', '.\\+\\+\\+\\+\\+\\+\\+\\+\\+\\+\\[\\>\\+\\+\\+\\+\\+\\+\\+\\>\\+\\+\\+\\+\\+\\+\\+\\+\\+\\+\\>\\+\\+\\+\\>\\+\\<\\<\\<\\<\\-\\]\\>\\+\\+\\.\\>\\+\\.\\+\\+\\+\\+\\+\\+\\+\\.\\.\\+\\+\\+\\.\\>\\+\\+\\.\\<\\<\\+\\+\\+\\+\\+\\+\\+\\+\\+\\+\\+\\+\\+\\+\\+\\.\\>\\.\\+\\+\\+\\.\\-\\-\\-\\-\\-\\-\\.\\-\\-\\-\\-\\-\\-\\-\\-\\.\\>\\+\\.\\>\\.', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, '++++++++++[>+++++++>++++++++++>+++>+<<<<-]>++.>+.+++++++..+++.>++.<<+++++++++++++++.>.+++.------.--------.>+.>.');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'class');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].raws.value, '\\+\\+\\+\\+\\+\\+\\+\\+\\+\\+\\[\\>\\+\\+\\+\\+\\+\\+\\+\\>\\+\\+\\+\\+\\+\\+\\+\\+\\+\\+\\>\\+\\+\\+\\>\\+\\<\\<\\<\\<\\-\\]\\>\\+\\+\\.\\>\\+\\.\\+\\+\\+\\+\\+\\+\\+\\.\\.\\+\\+\\+\\.\\>\\+\\+\\.\\<\\<\\+\\+\\+\\+\\+\\+\\+\\+\\+\\+\\+\\+\\+\\+\\+\\.\\>\\.\\+\\+\\+\\.\\-\\-\\-\\-\\-\\-\\.\\-\\-\\-\\-\\-\\-\\-\\-\\.\\>\\+\\.\\>\\.');
|
||||
});
|
||||
(0, _helpers.test)('class selector with escaping (17)', '.\\#', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, '#');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'class');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].raws.value, '\\#');
|
||||
});
|
||||
(0, _helpers.test)('class selector with escaping (18)', '.\\#\\#', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, '##');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'class');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].raws.value, '\\#\\#');
|
||||
});
|
||||
(0, _helpers.test)('class selector with escaping (19)', '.\\#\\.\\#\\.\\#', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, '#.#.#');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'class');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].raws.value, '\\#\\.\\#\\.\\#');
|
||||
});
|
||||
(0, _helpers.test)('class selector with escaping (20)', '.\\_', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, '_');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'class');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].raws.value, '\\_');
|
||||
});
|
||||
(0, _helpers.test)('class selector with escaping (21)', '.\\{\\}', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, '{}');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'class');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].raws.value, '\\{\\}');
|
||||
});
|
||||
(0, _helpers.test)('class selector with escaping (22)', '.\\#fake\\-id', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, '#fake-id');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'class');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].raws.value, '\\#fake\\-id');
|
||||
});
|
||||
(0, _helpers.test)('class selector with escaping (23)', '.foo\\.bar', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, 'foo.bar');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'class');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].raws.value, 'foo\\.bar');
|
||||
});
|
||||
(0, _helpers.test)('class selector with escaping (24)', '.\\3A hover', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, ':hover');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'class');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].raws.value, '\\3A hover');
|
||||
});
|
||||
(0, _helpers.test)('class selector with escaping (25)', '.\\3A hover\\3A focus\\3A active', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, ':hover:focus:active');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'class');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].raws.value, '\\3A hover\\3A focus\\3A active');
|
||||
});
|
||||
(0, _helpers.test)('class selector with escaping (26)', '.\\[attr\\=value\\]', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, '[attr=value]');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'class');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].raws.value, '\\[attr\\=value\\]');
|
||||
});
|
||||
(0, _helpers.test)('class selector with escaping (27)', '.f\\/o\\/o', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, 'f/o/o');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'class');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].raws.value, 'f\\/o\\/o');
|
||||
});
|
||||
(0, _helpers.test)('class selector with escaping (28)', '.f\\\\o\\\\o', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, 'f\\o\\o');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'class');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].raws.value, 'f\\\\o\\\\o');
|
||||
});
|
||||
(0, _helpers.test)('class selector with escaping (29)', '.f\\*o\\*o', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, 'f*o*o');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'class');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].raws.value, 'f\\*o\\*o');
|
||||
});
|
||||
(0, _helpers.test)('class selector with escaping (30)', '.f\\!o\\!o', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, 'f!o!o');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'class');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].raws.value, 'f\\!o\\!o');
|
||||
});
|
||||
(0, _helpers.test)('class selector with escaping (31)', '.f\\\'o\\\'o', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, 'f\'o\'o');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'class');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].raws.value, 'f\\\'o\\\'o');
|
||||
});
|
||||
(0, _helpers.test)('class selector with escaping (32)', '.f\\~o\\~o', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, 'f~o~o');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'class');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].raws.value, 'f\\~o\\~o');
|
||||
});
|
||||
(0, _helpers.test)('class selector with escaping (33)', '.f\\+o\\+o', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, 'f+o+o');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'class');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].raws.value, 'f\\+o\\+o');
|
||||
});
|
||||
(0, _helpers.test)('class selector with escaping (34)', '.\\1D306', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, '𝌆');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'class');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].raws.value, '\\1D306');
|
||||
});
|
||||
148
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/__tests__/combinators.js
generated
vendored
Executable file
148
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/__tests__/combinators.js
generated
vendored
Executable file
|
|
@ -0,0 +1,148 @@
|
|||
"use strict";
|
||||
|
||||
var _types = require("../selectors/types");
|
||||
|
||||
var _helpers = require("./util/helpers");
|
||||
|
||||
(0, _helpers.test)('multiple combinating spaces', 'h1 h2', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, 'h1');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].value, ' ');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].toString(), ' ');
|
||||
t.deepEqual(tree.nodes[0].nodes[2].value, 'h2');
|
||||
});
|
||||
(0, _helpers.test)('column combinator', '.selected||td', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, 'selected');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].value, '||');
|
||||
t.deepEqual(tree.nodes[0].nodes[2].value, 'td');
|
||||
});
|
||||
(0, _helpers.test)('column combinator (2)', '.selected || td', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, 'selected');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].spaces.before, ' ');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].value, '||');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].spaces.after, ' ');
|
||||
t.deepEqual(tree.nodes[0].nodes[2].value, 'td');
|
||||
});
|
||||
(0, _helpers.test)('descendant combinator', 'h1 h2', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, 'h1');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].value, ' ');
|
||||
t.deepEqual(tree.nodes[0].nodes[2].value, 'h2');
|
||||
});
|
||||
(0, _helpers.test)('multiple descendant combinators', 'h1 h2 h3 h4', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[1].value, ' ', 'should have a combinator');
|
||||
t.deepEqual(tree.nodes[0].nodes[3].value, ' ', 'should have a combinator');
|
||||
t.deepEqual(tree.nodes[0].nodes[5].value, ' ', 'should have a combinator');
|
||||
});
|
||||
(0, _helpers.test)('adjacent sibling combinator', 'h1~h2', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, 'h1');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].value, '~');
|
||||
t.deepEqual(tree.nodes[0].nodes[2].value, 'h2');
|
||||
});
|
||||
(0, _helpers.test)('adjacent sibling combinator (2)', 'h1 ~h2', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, 'h1');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].spaces.before, ' ');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].value, '~');
|
||||
t.deepEqual(tree.nodes[0].nodes[2].value, 'h2');
|
||||
});
|
||||
(0, _helpers.test)('adjacent sibling combinator (3)', 'h1~ h2', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, 'h1');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].value, '~');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].spaces.after, ' ');
|
||||
t.deepEqual(tree.nodes[0].nodes[2].value, 'h2');
|
||||
});
|
||||
(0, _helpers.test)('adjacent sibling combinator (4)', 'h1 ~ h2', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, 'h1');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].spaces.before, ' ');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].value, '~');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].spaces.after, ' ');
|
||||
t.deepEqual(tree.nodes[0].nodes[2].value, 'h2');
|
||||
});
|
||||
(0, _helpers.test)('adjacent sibling combinator (5)', 'h1~h2~h3', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, 'h1');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].value, '~');
|
||||
t.deepEqual(tree.nodes[0].nodes[2].value, 'h2');
|
||||
t.deepEqual(tree.nodes[0].nodes[3].value, '~');
|
||||
t.deepEqual(tree.nodes[0].nodes[4].value, 'h3');
|
||||
});
|
||||
(0, _helpers.test)('piercing combinator', '.a >>> .b', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, 'a');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].spaces.before, ' ');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].value, '>>>');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].spaces.after, ' ');
|
||||
t.deepEqual(tree.nodes[0].nodes[2].value, 'b');
|
||||
});
|
||||
(0, _helpers.test)('named combinators', 'a /deep/ b', function (t, tree) {
|
||||
var nodes = tree.nodes[0].nodes;
|
||||
t.deepEqual(nodes[0].value, 'a');
|
||||
t.deepEqual(nodes[1].type, _types.COMBINATOR);
|
||||
t.deepEqual(nodes[1].toString(), ' /deep/ ');
|
||||
t.deepEqual(nodes[1].value, '/deep/');
|
||||
t.deepEqual(nodes[2].value, 'b');
|
||||
});
|
||||
(0, _helpers.test)('named combinators with escapes', 'a /dee\\p/ b', function (t, tree) {
|
||||
var nodes = tree.nodes[0].nodes;
|
||||
t.deepEqual(nodes[0].value, 'a');
|
||||
t.deepEqual(nodes[1].type, _types.COMBINATOR);
|
||||
t.deepEqual(nodes[1].toString(), ' /dee\\p/ ');
|
||||
t.deepEqual(nodes[1].value, '/deep/');
|
||||
t.deepEqual(nodes[2].value, 'b');
|
||||
});
|
||||
(0, _helpers.test)('named combinators with escapes and uppercase', 'a /DeE\\p/ b', function (t, tree) {
|
||||
var nodes = tree.nodes[0].nodes;
|
||||
t.deepEqual(nodes[0].value, 'a');
|
||||
t.deepEqual(nodes[1].type, _types.COMBINATOR);
|
||||
t.deepEqual(nodes[1].toString(), ' /DeE\\p/ ');
|
||||
t.deepEqual(nodes[1].value, '/deep/');
|
||||
t.deepEqual(nodes[2].value, 'b');
|
||||
});
|
||||
(0, _helpers.test)('multiple combinators', 'h1~h2>h3', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[1].value, '~', 'should have a combinator');
|
||||
t.deepEqual(tree.nodes[0].nodes[3].value, '>', 'should have a combinator');
|
||||
});
|
||||
(0, _helpers.test)('multiple combinators with whitespaces', 'h1 + h2 > h3', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[1].value, '+', 'should have a combinator');
|
||||
t.deepEqual(tree.nodes[0].nodes[3].value, '>', 'should have a combinator');
|
||||
});
|
||||
(0, _helpers.test)('multiple combinators with whitespaces (2)', 'h1+ h2 >h3', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[1].value, '+', 'should have a combinator');
|
||||
t.deepEqual(tree.nodes[0].nodes[3].value, '>', 'should have a combinator');
|
||||
});
|
||||
(0, _helpers.test)('trailing combinator & spaces', 'p + ', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, 'p', 'should be a paragraph');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].value, '+', 'should have a combinator');
|
||||
});
|
||||
(0, _helpers.test)('trailing sibling combinator', 'p ~', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, 'p', 'should be a paragraph');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].value, '~', 'should have a combinator');
|
||||
});
|
||||
(0, _helpers.test)('ending in comment has no trailing combinator', ".bar /* comment 3 */", function (t, tree) {
|
||||
var nodeTypes = tree.nodes[0].map(function (n) {
|
||||
return n.type;
|
||||
});
|
||||
t.deepEqual(nodeTypes, ["class"]);
|
||||
});
|
||||
(0, _helpers.test)('The combinating space is not a space character', ".bar\n.baz", function (t, tree) {
|
||||
var nodeTypes = tree.nodes[0].map(function (n) {
|
||||
return n.type;
|
||||
});
|
||||
t.deepEqual(nodeTypes, ["class", "combinator", "class"]);
|
||||
t.deepEqual(tree.nodes[0].nodes[1].value, ' ', 'should have a combinator');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].raws.value, '\n', 'should have a raw combinator value');
|
||||
});
|
||||
(0, _helpers.test)('with spaces and a comment has only one combinator', ".bar /* comment 3 */ > .foo", function (t, tree) {
|
||||
var nodeTypes = tree.nodes[0].map(function (n) {
|
||||
return n.type;
|
||||
});
|
||||
t.deepEqual(nodeTypes, ["class", "combinator", "class"]);
|
||||
});
|
||||
(0, _helpers.test)('with a meaningful comment in the middle of a compound selector', "div/* wtf */.foo", function (t, tree) {
|
||||
var nodeTypes = tree.nodes[0].map(function (n) {
|
||||
return n.type;
|
||||
});
|
||||
t.deepEqual(nodeTypes, ["tag", "comment", "class"]);
|
||||
});
|
||||
(0, _helpers.test)('with a comment in the middle of a descendant selector', "div/* wtf */ .foo", function (t, tree) {
|
||||
var nodeTypes = tree.nodes[0].map(function (n) {
|
||||
return n.type;
|
||||
});
|
||||
t.deepEqual(nodeTypes, ["tag", "comment", "combinator", "class"]);
|
||||
});
|
||||
38
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/__tests__/comments.js
generated
vendored
Executable file
38
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/__tests__/comments.js
generated
vendored
Executable file
|
|
@ -0,0 +1,38 @@
|
|||
"use strict";
|
||||
|
||||
var _helpers = require("./util/helpers");
|
||||
|
||||
(0, _helpers.test)('comments', '/*test comment*/h2', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, '/*test comment*/');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].value, 'h2');
|
||||
});
|
||||
(0, _helpers.test)('comments (2)', '.a /*test comment*/label', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'class');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].type, 'combinator');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].value, ' ');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].spaces.after, ' ');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].rawSpaceAfter, ' /*test comment*/');
|
||||
t.deepEqual(tree.nodes[0].nodes[2].type, 'tag');
|
||||
});
|
||||
(0, _helpers.test)('comments (3)', '.a /*test comment*/ label', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'class');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].type, 'combinator');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].value, ' ');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].spaces.before, ' ');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].rawSpaceBefore, ' /*test comment*/ ');
|
||||
t.deepEqual(tree.nodes[0].nodes[2].type, 'tag');
|
||||
});
|
||||
(0, _helpers.test)('multiple comments and other things', 'h1/*test*/h2/*test*/.test/*test*/', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'tag', 'should have a tag');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].type, 'comment', 'should have a comment');
|
||||
t.deepEqual(tree.nodes[0].nodes[2].type, 'tag', 'should have a tag');
|
||||
t.deepEqual(tree.nodes[0].nodes[3].type, 'comment', 'should have a comment');
|
||||
t.deepEqual(tree.nodes[0].nodes[4].type, 'class', 'should have a class name');
|
||||
t.deepEqual(tree.nodes[0].nodes[5].type, 'comment', 'should have a comment');
|
||||
});
|
||||
(0, _helpers.test)('ending in comment', ".bar /* comment 3 */", function (t, tree) {
|
||||
var classname = tree.nodes[0].nodes[0];
|
||||
t.deepEqual(classname.type, 'class', 'should have a tag');
|
||||
t.deepEqual(classname.spaces.after, ' ');
|
||||
t.deepEqual(classname.raws.spaces.after, ' /* comment 3 */');
|
||||
});
|
||||
393
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/__tests__/container.js
generated
vendored
Executable file
393
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/__tests__/container.js
generated
vendored
Executable file
|
|
@ -0,0 +1,393 @@
|
|||
"use strict";
|
||||
|
||||
var _ava = _interopRequireDefault(require("ava"));
|
||||
|
||||
var _ = _interopRequireDefault(require(".."));
|
||||
|
||||
var _helpers = require("./util/helpers");
|
||||
|
||||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
||||
|
||||
(0, _ava.default)('container#append', function (t) {
|
||||
var out = (0, _helpers.parse)('h1', function (selectors) {
|
||||
var selector = selectors.first;
|
||||
var clone = selector.first.clone({
|
||||
value: 'h2'
|
||||
});
|
||||
selectors.append(clone);
|
||||
});
|
||||
t.deepEqual(out, 'h1,h2');
|
||||
});
|
||||
(0, _ava.default)('container#prepend', function (t) {
|
||||
var out = (0, _helpers.parse)('h2', function (selectors) {
|
||||
var selector = selectors.first;
|
||||
var clone = selector.first.clone({
|
||||
value: 'h1'
|
||||
});
|
||||
selectors.prepend(clone);
|
||||
});
|
||||
t.deepEqual(out, 'h1,h2');
|
||||
});
|
||||
(0, _ava.default)('container#each', function (t) {
|
||||
var str = '';
|
||||
(0, _helpers.parse)('h1, h2:not(h3, h4)', function (selectors) {
|
||||
selectors.each(function (selector) {
|
||||
if (selector.first.type === 'tag') {
|
||||
str += selector.first.value;
|
||||
}
|
||||
});
|
||||
});
|
||||
t.deepEqual(str, 'h1h2');
|
||||
});
|
||||
(0, _ava.default)('container#each (safe iteration)', function (t) {
|
||||
var out = (0, _helpers.parse)('.x, .y', function (selectors) {
|
||||
selectors.each(function (selector) {
|
||||
selector.parent.insertBefore(selector, _.default.className({
|
||||
value: 'b'
|
||||
}));
|
||||
selector.parent.insertAfter(selector, _.default.className({
|
||||
value: 'a'
|
||||
}));
|
||||
});
|
||||
});
|
||||
t.deepEqual(out, '.b,.x,.a,.b, .y,.a');
|
||||
});
|
||||
(0, _ava.default)('container#each (early exit)', function (t) {
|
||||
var str = '';
|
||||
(0, _helpers.parse)('h1, h2, h3, h4', function (selectors) {
|
||||
var eachReturn = selectors.each(function (selector) {
|
||||
var tag = selector.first.value;
|
||||
str += tag;
|
||||
return tag !== 'h2';
|
||||
});
|
||||
t.false(eachReturn);
|
||||
});
|
||||
t.deepEqual(str, 'h1h2');
|
||||
});
|
||||
(0, _ava.default)('container#walk', function (t) {
|
||||
var str = '';
|
||||
(0, _helpers.parse)('h1, h2:not(h3, h4)', function (selectors) {
|
||||
selectors.walk(function (selector) {
|
||||
if (selector.type === 'tag') {
|
||||
str += selector.value;
|
||||
}
|
||||
});
|
||||
});
|
||||
t.deepEqual(str, 'h1h2h3h4');
|
||||
});
|
||||
(0, _ava.default)('container#walk (safe iteration)', function (t) {
|
||||
var out = (0, _helpers.parse)('[class] + *[href] *:not(*.green)', function (selectors) {
|
||||
selectors.walkUniversals(function (selector) {
|
||||
var next = selector.next();
|
||||
|
||||
if (next && next.type !== 'combinator') {
|
||||
selector.remove();
|
||||
}
|
||||
});
|
||||
});
|
||||
t.deepEqual(out, '[class] + [href] :not(.green)');
|
||||
});
|
||||
(0, _ava.default)('container#walk (early exit)', function (t) {
|
||||
var str = '';
|
||||
(0, _helpers.parse)('h1, h2:not(h3, h4)', function (selectors) {
|
||||
var walkReturn = selectors.walk(function (selector) {
|
||||
if (selector.type === 'tag') {
|
||||
var tag = selector.value;
|
||||
str += tag;
|
||||
return tag !== 'h3';
|
||||
}
|
||||
});
|
||||
t.false(walkReturn);
|
||||
});
|
||||
t.deepEqual(str, 'h1h2h3');
|
||||
});
|
||||
(0, _ava.default)('container#walkAttribute', function (t) {
|
||||
var out = (0, _helpers.parse)('[href][class].class', function (selectors) {
|
||||
selectors.walkAttributes(function (attr) {
|
||||
if (attr.attribute === 'class') {
|
||||
attr.remove();
|
||||
}
|
||||
});
|
||||
});
|
||||
t.deepEqual(out, '[href].class');
|
||||
});
|
||||
(0, _ava.default)('container#walkClass', function (t) {
|
||||
var out = (0, _helpers.parse)('.one, .two, .three:not(.four, .five)', function (selectors) {
|
||||
selectors.walkClasses(function (className) {
|
||||
className.value = className.value.slice(0, 1);
|
||||
});
|
||||
});
|
||||
t.deepEqual(out, '.o, .t, .t:not(.f, .f)');
|
||||
});
|
||||
(0, _ava.default)('container#walkCombinator', function (t) {
|
||||
var out = (0, _helpers.parse)('h1 h2 h3 h4', function (selectors) {
|
||||
selectors.walkCombinators(function (comment) {
|
||||
comment.remove();
|
||||
});
|
||||
});
|
||||
t.deepEqual(out, 'h1h2h3h4');
|
||||
});
|
||||
(0, _ava.default)('container#walkComment', function (t) {
|
||||
var out = (0, _helpers.parse)('.one/*test*/.two', function (selectors) {
|
||||
selectors.walkComments(function (comment) {
|
||||
comment.remove();
|
||||
});
|
||||
});
|
||||
t.deepEqual(out, '.one.two');
|
||||
});
|
||||
(0, _ava.default)('container#walkId', function (t) {
|
||||
var out = (0, _helpers.parse)('h1#one, h2#two', function (selectors) {
|
||||
selectors.walkIds(function (id) {
|
||||
id.value = id.value.slice(0, 1);
|
||||
});
|
||||
});
|
||||
t.deepEqual(out, 'h1#o, h2#t');
|
||||
});
|
||||
(0, _ava.default)('container#walkNesting', function (t) {
|
||||
var out = (0, _helpers.parse)('& h1', function (selectors) {
|
||||
selectors.walkNesting(function (node) {
|
||||
node.replaceWith(_.default.tag({
|
||||
value: 'body'
|
||||
}));
|
||||
});
|
||||
});
|
||||
t.deepEqual(out, 'body h1');
|
||||
});
|
||||
(0, _ava.default)('container#walkPseudo', function (t) {
|
||||
var out = (0, _helpers.parse)('a:before, a:after', function (selectors) {
|
||||
selectors.walkPseudos(function (pseudo) {
|
||||
pseudo.value = pseudo.value.slice(0, 2);
|
||||
});
|
||||
});
|
||||
t.deepEqual(out, 'a:b, a:a');
|
||||
});
|
||||
(0, _ava.default)('container#walkTag', function (t) {
|
||||
var out = (0, _helpers.parse)('1 2 3', function (selectors) {
|
||||
selectors.walkTags(function (tag) {
|
||||
tag.value = 'h' + tag.value;
|
||||
});
|
||||
});
|
||||
t.deepEqual(out, 'h1 h2 h3');
|
||||
});
|
||||
(0, _ava.default)('container#walkUniversal', function (t) {
|
||||
var out = (0, _helpers.parse)('*.class,*.class,*.class', function (selectors) {
|
||||
selectors.walkUniversals(function (universal) {
|
||||
universal.remove();
|
||||
});
|
||||
});
|
||||
t.deepEqual(out, '.class,.class,.class');
|
||||
});
|
||||
(0, _ava.default)('container#map', function (t) {
|
||||
(0, _helpers.parse)('1 2 3', function (selectors) {
|
||||
var arr = selectors.first.map(function (selector) {
|
||||
if (/[0-9]/.test(selector.value)) {
|
||||
return 'h' + selector.value;
|
||||
}
|
||||
|
||||
return selector.value;
|
||||
});
|
||||
t.deepEqual(arr, ['h1', ' ', 'h2', ' ', 'h3']);
|
||||
});
|
||||
});
|
||||
(0, _ava.default)('container#every', function (t) {
|
||||
(0, _helpers.parse)('.one.two.three', function (selectors) {
|
||||
var allClasses = selectors.first.every(function (selector) {
|
||||
return selector.type === 'class';
|
||||
});
|
||||
t.truthy(allClasses);
|
||||
});
|
||||
});
|
||||
(0, _ava.default)('container#some', function (t) {
|
||||
(0, _helpers.parse)('one#two.three', function (selectors) {
|
||||
var someClasses = selectors.first.some(function (selector) {
|
||||
return selector.type === 'class';
|
||||
});
|
||||
t.truthy(someClasses);
|
||||
});
|
||||
});
|
||||
(0, _ava.default)('container#reduce', function (t) {
|
||||
(0, _helpers.parse)('h1, h2, h3, h4', function (selectors) {
|
||||
var str = selectors.reduce(function (memo, selector) {
|
||||
if (selector.first.type === 'tag') {
|
||||
memo += selector.first.value;
|
||||
}
|
||||
|
||||
return memo;
|
||||
}, '');
|
||||
t.deepEqual(str, 'h1h2h3h4');
|
||||
});
|
||||
});
|
||||
(0, _ava.default)('container#filter', function (t) {
|
||||
(0, _helpers.parse)('h1, h2, c1, c2', function (selectors) {
|
||||
var ast = selectors.filter(function (selector) {
|
||||
return ~selector.first.value.indexOf('h');
|
||||
});
|
||||
t.deepEqual(String(ast), 'h1, h2');
|
||||
});
|
||||
});
|
||||
(0, _ava.default)('container#split', function (t) {
|
||||
(0, _helpers.parse)('h1 h2 >> h3', function (selectors) {
|
||||
var list = selectors.first.split(function (selector) {
|
||||
return selector.value === '>>';
|
||||
}).map(function (group) {
|
||||
return group.map(String);
|
||||
});
|
||||
t.deepEqual(list, [['h1', ' ', 'h2', ' >> '], ['h3']]);
|
||||
t.deepEqual(list.length, 2);
|
||||
});
|
||||
});
|
||||
(0, _ava.default)('container#sort', function (t) {
|
||||
var out = (0, _helpers.parse)('h2,h3,h1,h4', function (selectors) {
|
||||
selectors.sort(function (a, b) {
|
||||
return a.first.value.slice(-1) - b.first.value.slice(-1);
|
||||
});
|
||||
});
|
||||
t.deepEqual(out, 'h1,h2,h3,h4');
|
||||
});
|
||||
(0, _ava.default)('container#at', function (t) {
|
||||
(0, _helpers.parse)('h1, h2, h3', function (selectors) {
|
||||
t.deepEqual(selectors.at(1).first.value, 'h2');
|
||||
});
|
||||
});
|
||||
(0, _ava.default)('container#first, container#last', function (t) {
|
||||
(0, _helpers.parse)('h1, h2, h3, h4', function (selectors) {
|
||||
t.deepEqual(selectors.first.first.value, 'h1');
|
||||
t.deepEqual(selectors.last.last.value, 'h4');
|
||||
});
|
||||
});
|
||||
(0, _ava.default)('container#index', function (t) {
|
||||
(0, _helpers.parse)('h1 h2 h3', function (selectors) {
|
||||
var middle = selectors.first.at(1);
|
||||
t.deepEqual(selectors.first.index(middle), 1);
|
||||
});
|
||||
});
|
||||
(0, _ava.default)('container#length', function (t) {
|
||||
(0, _helpers.parse)('h1, h2, h3', function (selectors) {
|
||||
t.deepEqual(selectors.length, 3);
|
||||
});
|
||||
});
|
||||
(0, _ava.default)('container#removeChild', function (t) {
|
||||
var out = (0, _helpers.parse)('h1.class h2.class h3.class', function (selectors) {
|
||||
selectors.walk(function (selector) {
|
||||
if (selector.type === 'class') {
|
||||
selector.parent.removeChild(selector);
|
||||
}
|
||||
});
|
||||
});
|
||||
t.deepEqual(out, 'h1 h2 h3');
|
||||
});
|
||||
(0, _ava.default)('container#removeAll, container#empty', function (t) {
|
||||
var wipe = function wipe(method) {
|
||||
return function (selectors) {
|
||||
return selectors[method]();
|
||||
};
|
||||
};
|
||||
|
||||
var out1 = (0, _helpers.parse)('h1 h2, h2 h3, h3 h4', wipe('empty'));
|
||||
var out2 = (0, _helpers.parse)('h1 h2, h2 h3, h3 h4', wipe('removeAll'));
|
||||
t.deepEqual(out1, '');
|
||||
t.deepEqual(out2, '');
|
||||
});
|
||||
(0, _ava.default)('container#insertBefore', function (t) {
|
||||
var out = (0, _helpers.parse)('h2', function (selectors) {
|
||||
var selector = selectors.first;
|
||||
var clone = selector.first.clone({
|
||||
value: 'h1'
|
||||
});
|
||||
selectors.insertBefore(selector, clone);
|
||||
});
|
||||
t.deepEqual(out, 'h1,h2');
|
||||
});
|
||||
(0, _ava.default)('container#insertBefore and node#remove', function (t) {
|
||||
var out = (0, _helpers.parse)('h2', function (selectors) {
|
||||
var selector = selectors.first;
|
||||
|
||||
var newSel = _.default.tag({
|
||||
value: 'h1'
|
||||
});
|
||||
|
||||
selectors.insertBefore(selector, newSel);
|
||||
newSel.remove();
|
||||
});
|
||||
t.deepEqual(out, 'h2');
|
||||
});
|
||||
(0, _ava.default)('container#insertAfter', function (t) {
|
||||
var out = (0, _helpers.parse)('h1', function (selectors) {
|
||||
var selector = selectors.first;
|
||||
var clone = selector.first.clone({
|
||||
value: 'h2'
|
||||
});
|
||||
selectors.insertAfter(selector, clone);
|
||||
});
|
||||
t.deepEqual(out, 'h1,h2');
|
||||
});
|
||||
(0, _ava.default)('container#insertAfter and node#remove', function (t) {
|
||||
var out = (0, _helpers.parse)('h2', function (selectors) {
|
||||
var selector = selectors.first;
|
||||
|
||||
var newSel = _.default.tag({
|
||||
value: 'h1'
|
||||
});
|
||||
|
||||
selectors.insertAfter(selector, newSel);
|
||||
newSel.remove();
|
||||
});
|
||||
t.deepEqual(out, 'h2');
|
||||
});
|
||||
(0, _ava.default)('container#insertAfter (during iteration)', function (t) {
|
||||
var out = (0, _helpers.parse)('h1, h2, h3', function (selectors) {
|
||||
selectors.walkTags(function (selector) {
|
||||
var attribute = _.default.attribute({
|
||||
attribute: 'class'
|
||||
});
|
||||
|
||||
selector.parent.insertAfter(selector, attribute);
|
||||
});
|
||||
});
|
||||
t.deepEqual(out, 'h1[class], h2[class], h3[class]');
|
||||
});
|
||||
(0, _ava.default)('Container#atPosition first pseudo', function (t) {
|
||||
(0, _helpers.parse)(':not(.foo),\n#foo > :matches(ol, ul)', function (root) {
|
||||
var node = root.atPosition(1, 1);
|
||||
t.deepEqual(node.type, "pseudo");
|
||||
t.deepEqual(node.toString(), ":not(.foo)");
|
||||
});
|
||||
});
|
||||
(0, _ava.default)('Container#atPosition class in pseudo', function (t) {
|
||||
(0, _helpers.parse)(':not(.foo),\n#foo > :matches(ol, ul)', function (root) {
|
||||
var node = root.atPosition(1, 6);
|
||||
t.deepEqual(node.type, "class");
|
||||
t.deepEqual(node.toString(), ".foo");
|
||||
});
|
||||
});
|
||||
(0, _ava.default)('Container#atPosition id in second selector', function (t) {
|
||||
(0, _helpers.parse)(':not(.foo),\n#foo > :matches(ol, ul)', function (root) {
|
||||
var node = root.atPosition(2, 1);
|
||||
t.deepEqual(node.type, "id");
|
||||
t.deepEqual(node.toString(), "\n#foo");
|
||||
});
|
||||
});
|
||||
(0, _ava.default)('Container#atPosition combinator in second selector', function (t) {
|
||||
(0, _helpers.parse)(':not(.foo),\n#foo > :matches(ol, ul)', function (root) {
|
||||
var node = root.atPosition(2, 6);
|
||||
t.deepEqual(node.type, "combinator");
|
||||
t.deepEqual(node.toString(), " > ");
|
||||
var nodeSpace = root.atPosition(2, 5);
|
||||
t.deepEqual(nodeSpace.type, "selector");
|
||||
t.deepEqual(nodeSpace.toString(), "\n#foo > :matches(ol, ul)");
|
||||
});
|
||||
});
|
||||
(0, _ava.default)('Container#atPosition tag in second selector pseudo', function (t) {
|
||||
(0, _helpers.parse)(':not(.foo),\n#foo > :matches(ol, ul)', function (root) {
|
||||
var node = root.atPosition(2, 17);
|
||||
t.deepEqual(node.type, "tag");
|
||||
t.deepEqual(node.toString(), "ol");
|
||||
});
|
||||
});
|
||||
(0, _ava.default)('Container#atPosition comma in second selector pseudo', function (t) {
|
||||
(0, _helpers.parse)(':not(.foo),\n#foo > :matches(ol, ul)', function (root) {
|
||||
var node = root.atPosition(2, 19);
|
||||
t.deepEqual(node.type, "pseudo");
|
||||
t.deepEqual(node.toString(), ":matches(ol, ul)");
|
||||
});
|
||||
});
|
||||
19
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/__tests__/escapes.js
generated
vendored
Executable file
19
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/__tests__/escapes.js
generated
vendored
Executable file
|
|
@ -0,0 +1,19 @@
|
|||
"use strict";
|
||||
|
||||
var _helpers = require("./util/helpers");
|
||||
|
||||
(0, _helpers.test)('escaped semicolon in class', '.\\;', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, ';');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].raws.value, '\\;');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'class');
|
||||
});
|
||||
(0, _helpers.test)('escaped semicolon in id', '#\\;', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, ';');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].raws.value, '\\;');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'id');
|
||||
}); // This is a side-effect of allowing media queries to be parsed. Not sure it shouldn't just be an error.
|
||||
|
||||
(0, _helpers.test)('bare parens capture contents as a string', '(h1)', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, '(h1)');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'string');
|
||||
});
|
||||
24
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/__tests__/exceptions.js
generated
vendored
Executable file
24
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/__tests__/exceptions.js
generated
vendored
Executable file
|
|
@ -0,0 +1,24 @@
|
|||
"use strict";
|
||||
|
||||
var _helpers = require("./util/helpers");
|
||||
|
||||
// Unclosed elements
|
||||
(0, _helpers.throws)('unclosed string', 'a[href="wow]');
|
||||
(0, _helpers.throws)('unclosed comment', '/* oops');
|
||||
(0, _helpers.throws)('unclosed pseudo element', 'button::');
|
||||
(0, _helpers.throws)('unclosed pseudo class', 'a:');
|
||||
(0, _helpers.throws)('unclosed attribute selector', '[name="james"][href');
|
||||
(0, _helpers.throws)('no opening parenthesis', ')');
|
||||
(0, _helpers.throws)('no opening parenthesis (2)', ':global.foo)');
|
||||
(0, _helpers.throws)('no opening parenthesis (3)', 'h1:not(h2:not(h3)))');
|
||||
(0, _helpers.throws)('no opening square bracket', ']');
|
||||
(0, _helpers.throws)('no opening square bracket (2)', ':global.foo]');
|
||||
(0, _helpers.throws)('no opening square bracket (3)', '[global]]');
|
||||
(0, _helpers.throws)('bad pseudo element', 'button::"after"');
|
||||
(0, _helpers.throws)('missing closing parenthesis in pseudo', ':not([attr="test"]:not([attr="test"])');
|
||||
(0, _helpers.throws)('bad syntax', '-moz-osx-font-smoothing: grayscale');
|
||||
(0, _helpers.throws)('bad syntax (2)', '! .body');
|
||||
(0, _helpers.throws)('missing backslash for semicolon', '.;');
|
||||
(0, _helpers.throws)('missing backslash for semicolon (2)', '.\;');
|
||||
(0, _helpers.throws)('unexpected / foo', '-Option\/root', "Unexpected '/'. Escaping special characters with \\ may help.");
|
||||
(0, _helpers.throws)('bang in selector', '.foo !optional', "Unexpected '!'. Escaping special characters with \\ may help.");
|
||||
118
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/__tests__/guards.js
generated
vendored
Executable file
118
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/__tests__/guards.js
generated
vendored
Executable file
|
|
@ -0,0 +1,118 @@
|
|||
"use strict";
|
||||
|
||||
var _ = _interopRequireDefault(require("../"));
|
||||
|
||||
var _helpers = require("./util/helpers");
|
||||
|
||||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
||||
|
||||
var node = function node(tree, n) {
|
||||
if (n === void 0) {
|
||||
n = 0;
|
||||
}
|
||||
|
||||
return tree.nodes[0].nodes[n];
|
||||
};
|
||||
|
||||
(0, _helpers.test)('attribute guard', '[foo]', function (t, tree) {
|
||||
var n = node(tree);
|
||||
t.true(_.default.isNode(n));
|
||||
t.false(_.default.isAttribute(undefined));
|
||||
t.true(_.default.isAttribute(n));
|
||||
t.false(_.default.isContainer(n));
|
||||
t.true(_.default.isNamespace(n));
|
||||
});
|
||||
(0, _helpers.test)('className guard', '.foo', function (t, tree) {
|
||||
var n = node(tree);
|
||||
t.true(_.default.isNode(n));
|
||||
t.false(_.default.isClassName(undefined));
|
||||
t.true(_.default.isClassName(n));
|
||||
t.false(_.default.isContainer(n));
|
||||
t.false(_.default.isNamespace(n));
|
||||
});
|
||||
(0, _helpers.test)('combinator guard', '.foo > .bar', function (t, tree) {
|
||||
var n = node(tree, 1);
|
||||
t.true(_.default.isNode(n));
|
||||
t.false(_.default.isCombinator(undefined));
|
||||
t.true(_.default.isCombinator(n));
|
||||
t.false(_.default.isContainer(n));
|
||||
t.false(_.default.isNamespace(n));
|
||||
});
|
||||
(0, _helpers.test)('comment guard', '/* foo */.foo > .bar', function (t, tree) {
|
||||
var n = node(tree);
|
||||
t.true(_.default.isNode(n));
|
||||
t.false(_.default.isComment(undefined));
|
||||
t.true(_.default.isComment(n));
|
||||
t.false(_.default.isContainer(n));
|
||||
t.false(_.default.isNamespace(n));
|
||||
});
|
||||
(0, _helpers.test)('id guard', '#ident', function (t, tree) {
|
||||
var n = node(tree);
|
||||
t.true(_.default.isNode(n));
|
||||
t.false(_.default.isIdentifier(undefined));
|
||||
t.true(_.default.isIdentifier(n));
|
||||
t.false(_.default.isContainer(n));
|
||||
t.false(_.default.isNamespace(n));
|
||||
});
|
||||
(0, _helpers.test)('nesting guard', '&.foo', function (t, tree) {
|
||||
var n = node(tree);
|
||||
t.true(_.default.isNode(n));
|
||||
t.false(_.default.isNesting(undefined));
|
||||
t.true(_.default.isNesting(n));
|
||||
t.false(_.default.isContainer(n));
|
||||
t.false(_.default.isNamespace(n));
|
||||
});
|
||||
(0, _helpers.test)('pseudo class guard', ':hover', function (t, tree) {
|
||||
var n = node(tree);
|
||||
t.true(_.default.isNode(n));
|
||||
t.false(_.default.isPseudo(undefined));
|
||||
t.true(_.default.isPseudo(n));
|
||||
t.true(_.default.isPseudoClass(n));
|
||||
t.false(_.default.isPseudoElement(n));
|
||||
t.true(_.default.isContainer(n));
|
||||
t.false(_.default.isNamespace(n));
|
||||
});
|
||||
(0, _helpers.test)('pseudo element guard', '::first-line', function (t, tree) {
|
||||
var n = node(tree);
|
||||
t.true(_.default.isNode(n));
|
||||
t.false(_.default.isPseudo(undefined));
|
||||
t.true(_.default.isPseudo(n));
|
||||
t.false(_.default.isPseudoClass(n));
|
||||
t.true(_.default.isPseudoElement(n));
|
||||
t.true(_.default.isContainer(n));
|
||||
t.false(_.default.isNamespace(n));
|
||||
});
|
||||
(0, _helpers.test)('special pseudo element guard', ':before:after', function (t, tree) {
|
||||
[node(tree), node(tree, 1)].forEach(function (n) {
|
||||
t.true(_.default.isPseudo(n));
|
||||
t.false(_.default.isPseudoClass(n));
|
||||
t.true(_.default.isPseudoElement(n));
|
||||
t.true(_.default.isContainer(n));
|
||||
t.false(_.default.isNamespace(n));
|
||||
});
|
||||
});
|
||||
(0, _helpers.test)('string guard', '"string"', function (t, tree) {
|
||||
var n = node(tree);
|
||||
t.true(_.default.isNode(n));
|
||||
t.false(_.default.isString(undefined));
|
||||
t.true(_.default.isString(n));
|
||||
t.false(_.default.isContainer(n));
|
||||
t.false(_.default.isNamespace(n));
|
||||
});
|
||||
(0, _helpers.test)('tag guard', 'h1', function (t, tree) {
|
||||
var n = node(tree);
|
||||
t.false(_.default.isNode(undefined));
|
||||
t.true(_.default.isNode(n));
|
||||
t.false(_.default.isTag(undefined));
|
||||
t.true(_.default.isTag(n));
|
||||
t.false(_.default.isContainer(n));
|
||||
t.true(_.default.isNamespace(n));
|
||||
});
|
||||
(0, _helpers.test)('universal guard', '*', function (t, tree) {
|
||||
var n = node(tree);
|
||||
t.true(_.default.isNode(n));
|
||||
t.false(_.default.isUniversal(undefined));
|
||||
t.true(_.default.isUniversal(n));
|
||||
t.false(_.default.isContainer(n));
|
||||
t.false(_.default.isNamespace(n));
|
||||
});
|
||||
229
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/__tests__/id.js
generated
vendored
Executable file
229
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/__tests__/id.js
generated
vendored
Executable file
|
|
@ -0,0 +1,229 @@
|
|||
"use strict";
|
||||
|
||||
var _helpers = require("./util/helpers");
|
||||
|
||||
(0, _helpers.test)('id selector', '#one', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, 'one');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'id');
|
||||
});
|
||||
(0, _helpers.test)('id hack', '#one#two', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'id');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].type, 'id');
|
||||
});
|
||||
(0, _helpers.test)('id and class names mixed', '#one.two.three', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, 'one');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].value, 'two');
|
||||
t.deepEqual(tree.nodes[0].nodes[2].value, 'three');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'id');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].type, 'class');
|
||||
t.deepEqual(tree.nodes[0].nodes[2].type, 'class');
|
||||
});
|
||||
(0, _helpers.test)('qualified id', 'button#one', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'tag');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].type, 'id');
|
||||
});
|
||||
(0, _helpers.test)('qualified id & class name', 'h1#one.two', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'tag');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].type, 'id');
|
||||
t.deepEqual(tree.nodes[0].nodes[2].type, 'class');
|
||||
});
|
||||
(0, _helpers.test)('extraneous non-combinating whitespace', ' #h1 , #h2 ', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, 'h1');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].spaces.before, ' ');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].spaces.after, ' ');
|
||||
t.deepEqual(tree.nodes[1].nodes[0].value, 'h2');
|
||||
t.deepEqual(tree.nodes[1].nodes[0].spaces.before, ' ');
|
||||
t.deepEqual(tree.nodes[1].nodes[0].spaces.after, ' ');
|
||||
});
|
||||
(0, _helpers.test)('Sass interpolation within a class', '.#{foo}', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes.length, 1);
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'class');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, '#{foo}');
|
||||
});
|
||||
(0, _helpers.test)('Sass interpolation within an id', '#foo#{bar}', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes.length, 1);
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'id');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, 'foo#{bar}');
|
||||
});
|
||||
(0, _helpers.test)('Less interpolation within an id', '#foo@{bar}', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes.length, 1);
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'id');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, 'foo@{bar}');
|
||||
});
|
||||
(0, _helpers.test)('id selector with escaping', '#\\#test', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, '#test');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'id');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].raws.value, '\\#test');
|
||||
});
|
||||
(0, _helpers.test)('id selector with escaping (2)', '#-a-b-c-', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, '-a-b-c-');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'id');
|
||||
});
|
||||
(0, _helpers.test)('id selector with escaping (3)', '#u-m\\00002b', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, 'u-m+');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'id');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].raws.value, 'u-m\\00002b');
|
||||
});
|
||||
(0, _helpers.test)('id selector with escaping (4)', '#♥', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, '♥');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'id');
|
||||
});
|
||||
(0, _helpers.test)('id selector with escaping (5)', '#©', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, '©');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'id');
|
||||
});
|
||||
(0, _helpers.test)('id selector with escaping (6)', '#“‘’”', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, '“‘’”');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'id');
|
||||
});
|
||||
(0, _helpers.test)('id selector with escaping (7)', '#☺☃', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, '☺☃');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'id');
|
||||
});
|
||||
(0, _helpers.test)('id selector with escaping (8)', '#⌘⌥', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, '⌘⌥');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'id');
|
||||
});
|
||||
(0, _helpers.test)('id selector with escaping (9)', '#𝄞♪♩♫♬', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, '𝄞♪♩♫♬');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'id');
|
||||
});
|
||||
(0, _helpers.test)('id selector with escaping (10)', '#💩', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, '💩');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'id');
|
||||
});
|
||||
(0, _helpers.test)('id selector with escaping (11)', '#\\?', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, '?');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'id');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].raws.value, '\\?');
|
||||
});
|
||||
(0, _helpers.test)('id selector with escaping (12)', '#\\@', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, '@');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'id');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].raws.value, '\\@');
|
||||
});
|
||||
(0, _helpers.test)('id selector with escaping (13)', '#\\.', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, '.');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'id');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].raws.value, '\\.');
|
||||
});
|
||||
(0, _helpers.test)('id selector with escaping (14)', '#\\3A \\)', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, ':)');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'id');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].raws.value, '\\3A \\)');
|
||||
});
|
||||
(0, _helpers.test)('id selector with escaping (15)', '#\\3A \\`\\(', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, ':`(');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'id');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].raws.value, '\\3A \\`\\(');
|
||||
});
|
||||
(0, _helpers.test)('id selector with escaping (16)', '#\\31 23', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, '123');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'id');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].raws.value, '\\31 23');
|
||||
});
|
||||
(0, _helpers.test)('id selector with escaping (17)', '#\\31 a2b3c', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, '1a2b3c');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'id');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].raws.value, '\\31 a2b3c');
|
||||
});
|
||||
(0, _helpers.test)('id selector with escaping (18)', '#\\<p\\>', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, '<p>');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'id');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].raws.value, '\\<p\\>');
|
||||
});
|
||||
(0, _helpers.test)('id selector with escaping (19)', '#\\<\\>\\<\\<\\<\\>\\>\\<\\>', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, '<><<<>><>');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'id');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].raws.value, '\\<\\>\\<\\<\\<\\>\\>\\<\\>');
|
||||
});
|
||||
(0, _helpers.test)('id selector with escaping (20)', '#\\+\\+\\+\\+\\+\\+\\+\\+\\+\\+\\[\\>\\+\\+\\+\\+\\+\\+\\+\\>\\+\\+\\+\\+\\+\\+\\+\\+\\+\\+\\>\\+\\+\\+\\>\\+\\<\\<\\<\\<\\-\\]\\>\\+\\+\\.\\>\\+\\.\\+\\+\\+\\+\\+\\+\\+\\.\\.\\+\\+\\+\\.\\>\\+\\+\\.\\<\\<\\+\\+\\+\\+\\+\\+\\+\\+\\+\\+\\+\\+\\+\\+\\+\\.\\>\\.\\+\\+\\+\\.\\-\\-\\-\\-\\-\\-\\.\\-\\-\\-\\-\\-\\-\\-\\-\\.\\>\\+\\.\\>\\.', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, '++++++++++[>+++++++>++++++++++>+++>+<<<<-]>++.>+.+++++++..+++.>++.<<+++++++++++++++.>.+++.------.--------.>+.>.');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'id');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].raws.value, '\\+\\+\\+\\+\\+\\+\\+\\+\\+\\+\\[\\>\\+\\+\\+\\+\\+\\+\\+\\>\\+\\+\\+\\+\\+\\+\\+\\+\\+\\+\\>\\+\\+\\+\\>\\+\\<\\<\\<\\<\\-\\]\\>\\+\\+\\.\\>\\+\\.\\+\\+\\+\\+\\+\\+\\+\\.\\.\\+\\+\\+\\.\\>\\+\\+\\.\\<\\<\\+\\+\\+\\+\\+\\+\\+\\+\\+\\+\\+\\+\\+\\+\\+\\.\\>\\.\\+\\+\\+\\.\\-\\-\\-\\-\\-\\-\\.\\-\\-\\-\\-\\-\\-\\-\\-\\.\\>\\+\\.\\>\\.');
|
||||
});
|
||||
(0, _helpers.test)('id selector with escaping (21)', '#\\#', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, '#');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'id');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].raws.value, '\\#');
|
||||
});
|
||||
(0, _helpers.test)('id selector with escaping (22)', '#\\#\\#', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, '##');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'id');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].raws.value, '\\#\\#');
|
||||
});
|
||||
(0, _helpers.test)('id selector with escaping (23)', '#\\#\\.\\#\\.\\#', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, '#.#.#');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'id');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].raws.value, '\\#\\.\\#\\.\\#');
|
||||
});
|
||||
(0, _helpers.test)('id selector with escaping (24)', '#\\_', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, '_');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'id');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].raws.value, '\\_');
|
||||
});
|
||||
(0, _helpers.test)('id selector with escaping (25)', '#\\{\\}', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, '{}');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'id');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].raws.value, '\\{\\}');
|
||||
});
|
||||
(0, _helpers.test)('id selector with escaping (26)', '#\\.fake\\-class', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, '.fake-class');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'id');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].raws.value, '\\.fake\\-class');
|
||||
});
|
||||
(0, _helpers.test)('id selector with escaping (27)', '#foo\\.bar', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, 'foo.bar');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'id');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].raws.value, 'foo\\.bar');
|
||||
});
|
||||
(0, _helpers.test)('id selector with escaping (28)', '#\\3A hover', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, ':hover');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'id');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].raws.value, '\\3A hover');
|
||||
});
|
||||
(0, _helpers.test)('id selector with escaping (29)', '#\\3A hover\\3A focus\\3A active', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, ':hover:focus:active');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'id');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].raws.value, '\\3A hover\\3A focus\\3A active');
|
||||
});
|
||||
(0, _helpers.test)('id selector with escaping (30)', '#\\[attr\\=value\\]', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, '[attr=value]');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'id');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].raws.value, '\\[attr\\=value\\]');
|
||||
});
|
||||
(0, _helpers.test)('id selector with escaping (31)', '#f\\/o\\/o', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, 'f/o/o');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'id');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].raws.value, 'f\\/o\\/o');
|
||||
});
|
||||
(0, _helpers.test)('id selector with escaping (32)', '#f\\\\o\\\\o', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, 'f\\o\\o');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'id');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].raws.value, 'f\\\\o\\\\o');
|
||||
});
|
||||
(0, _helpers.test)('id selector with escaping (33)', '#f\\*o\\*o', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, 'f*o*o');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'id');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].raws.value, 'f\\*o\\*o');
|
||||
});
|
||||
(0, _helpers.test)('id selector with escaping (34)', '#f\\!o\\!o', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, 'f!o!o');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'id');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].raws.value, 'f\\!o\\!o');
|
||||
});
|
||||
(0, _helpers.test)('id selector with escaping (35)', '#f\\\'o\\\'o', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, 'f\'o\'o');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'id');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].raws.value, 'f\\\'o\\\'o');
|
||||
});
|
||||
(0, _helpers.test)('id selector with escaping (36)', '#f\\~o\\~o', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, 'f~o~o');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'id');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].raws.value, 'f\\~o\\~o');
|
||||
});
|
||||
(0, _helpers.test)('id selector with escaping (37)', '#f\\+o\\+o', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, 'f+o+o');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'id');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].raws.value, 'f\\+o\\+o');
|
||||
});
|
||||
88
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/__tests__/lossy.js
generated
vendored
Executable file
88
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/__tests__/lossy.js
generated
vendored
Executable file
|
|
@ -0,0 +1,88 @@
|
|||
"use strict";
|
||||
|
||||
exports.__esModule = true;
|
||||
exports.testLossy = exports.parse = void 0;
|
||||
|
||||
var _ava = _interopRequireDefault(require("ava"));
|
||||
|
||||
var _index = _interopRequireDefault(require("../index"));
|
||||
|
||||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
||||
|
||||
var parse = function parse(input, options, transform) {
|
||||
return (0, _index.default)(transform).processSync(input, options);
|
||||
};
|
||||
|
||||
exports.parse = parse;
|
||||
|
||||
var testLossy = function testLossy(t, input, expected) {
|
||||
var result = parse(input, {
|
||||
lossless: false
|
||||
});
|
||||
t.deepEqual(result, expected);
|
||||
};
|
||||
|
||||
exports.testLossy = testLossy;
|
||||
(0, _ava.default)('combinator, descendant - single', testLossy, '.one .two', '.one .two');
|
||||
(0, _ava.default)('combinator, descendant - multiple', testLossy, '.one .two', '.one .two');
|
||||
(0, _ava.default)('combinator, child - space before', testLossy, '.one >.two', '.one>.two');
|
||||
(0, _ava.default)('combinator, child - space after', testLossy, '.one> .two', '.one>.two');
|
||||
(0, _ava.default)('combinator, sibling - space before', testLossy, '.one ~.two', '.one~.two');
|
||||
(0, _ava.default)('combinator, sibling - space after', testLossy, '.one~ .two', '.one~.two');
|
||||
(0, _ava.default)('combinator, adj sibling - space before', testLossy, '.one +.two', '.one+.two');
|
||||
(0, _ava.default)('combinator, adj sibling - space after', testLossy, '.one+ .two', '.one+.two');
|
||||
(0, _ava.default)('classes, extraneous spaces', testLossy, ' .h1 , .h2 ', '.h1,.h2');
|
||||
(0, _ava.default)('ids, extraneous spaces', testLossy, ' #h1 , #h2 ', '#h1,#h2');
|
||||
(0, _ava.default)('attribute, spaces in selector', testLossy, 'h1[ href *= "test" ]', 'h1[href*="test"]');
|
||||
(0, _ava.default)('attribute, insensitive flag 1', testLossy, '[href="test" i ]', '[href="test"i]');
|
||||
(0, _ava.default)('attribute, insensitive flag 2', testLossy, '[href=TEsT i ]', '[href=TEsT i]');
|
||||
(0, _ava.default)('attribute, insensitive flag 3', testLossy, '[href=test i ]', '[href=test i]');
|
||||
(0, _ava.default)('attribute, extreneous whitespace', testLossy, ' [href] , [class] ', '[href],[class]');
|
||||
(0, _ava.default)('namespace, space before', testLossy, ' postcss|button', 'postcss|button');
|
||||
(0, _ava.default)('namespace, space after', testLossy, 'postcss|button ', 'postcss|button');
|
||||
(0, _ava.default)('namespace - all elements, space before', testLossy, ' postcss|*', 'postcss|*');
|
||||
(0, _ava.default)('namespace - all elements, space after', testLossy, 'postcss|* ', 'postcss|*');
|
||||
(0, _ava.default)('namespace - all namespaces, space before', testLossy, ' *|button', '*|button');
|
||||
(0, _ava.default)('namespace - all namespaces, space after', testLossy, '*|button ', '*|button');
|
||||
(0, _ava.default)('namespace - all elements in all namespaces, space before', testLossy, ' *|*', '*|*');
|
||||
(0, _ava.default)('namespace - all elements in all namespaces, space after', testLossy, '*|* ', '*|*');
|
||||
(0, _ava.default)('namespace - all elements without namespace, space before', testLossy, ' |*', '|*');
|
||||
(0, _ava.default)('namespace - all elements without namespace, space after', testLossy, '|* ', '|*');
|
||||
(0, _ava.default)('namespace - tag with no namespace, space before', testLossy, ' |button', '|button');
|
||||
(0, _ava.default)('namespace - tag with no namespace, space after', testLossy, '|button ', '|button');
|
||||
(0, _ava.default)('namespace - inside attribute, space before', testLossy, ' [ postcss|href=test]', '[postcss|href=test]');
|
||||
(0, _ava.default)('namespace - inside attribute, space after', testLossy, '[postcss|href= test ] ', '[postcss|href=test]');
|
||||
(0, _ava.default)('namespace - inside attribute (2), space before', testLossy, ' [ postcss|href]', '[postcss|href]');
|
||||
(0, _ava.default)('namespace - inside attribute (2), space after', testLossy, '[postcss|href ] ', '[postcss|href]');
|
||||
(0, _ava.default)('namespace - inside attribute (3), space before', testLossy, ' [ *|href=test]', '[*|href=test]');
|
||||
(0, _ava.default)('namespace - inside attribute (3), space after', testLossy, '[*|href= test ] ', '[*|href=test]');
|
||||
(0, _ava.default)('namespace - inside attribute (4), space after', testLossy, '[|href= test ] ', '[|href=test]');
|
||||
(0, _ava.default)('tag - extraneous whitespace', testLossy, ' h1 , h2 ', 'h1,h2');
|
||||
(0, _ava.default)('tag - trailing comma', testLossy, 'h1, ', 'h1,');
|
||||
(0, _ava.default)('tag - trailing comma (1)', testLossy, 'h1,', 'h1,');
|
||||
(0, _ava.default)('tag - trailing comma (2)', testLossy, 'h1', 'h1');
|
||||
(0, _ava.default)('tag - trailing slash (1)', testLossy, 'h1\\ ', 'h1\\ ');
|
||||
(0, _ava.default)('tag - trailing slash (2)', testLossy, 'h1\\ h2\\', 'h1\\ h2\\');
|
||||
(0, _ava.default)('universal - combinator', testLossy, ' * + * ', '*+*');
|
||||
(0, _ava.default)('universal - extraneous whitespace', testLossy, ' * , * ', '*,*');
|
||||
(0, _ava.default)('universal - qualified universal selector', testLossy, '*[href] *:not(*.green)', '*[href] *:not(*.green)');
|
||||
(0, _ava.default)('nesting - spacing before', testLossy, ' &.class', '&.class');
|
||||
(0, _ava.default)('nesting - spacing after', testLossy, '&.class ', '&.class');
|
||||
(0, _ava.default)('nesting - spacing between', testLossy, '& .class ', '& .class');
|
||||
(0, _ava.default)('pseudo (single) - spacing before', testLossy, ' :after', ':after');
|
||||
(0, _ava.default)('pseudo (single) - spacing after', testLossy, ':after ', ':after');
|
||||
(0, _ava.default)('pseudo (double) - spacing before', testLossy, ' ::after', '::after');
|
||||
(0, _ava.default)('pseudo (double) - spacing after', testLossy, '::after ', '::after');
|
||||
(0, _ava.default)('pseudo - multiple', testLossy, ' *:target::before , a:after ', '*:target::before,a:after');
|
||||
(0, _ava.default)('pseudo - negated', testLossy, 'h1:not( .heading )', 'h1:not(.heading)');
|
||||
(0, _ava.default)('pseudo - negated with combinators (1)', testLossy, 'h1:not(.heading > .title) > h1', 'h1:not(.heading>.title)>h1');
|
||||
(0, _ava.default)('pseudo - negated with combinators (2)', testLossy, '.foo:nth-child(2n + 1)', '.foo:nth-child(2n+1)');
|
||||
(0, _ava.default)('pseudo - extra whitespace', testLossy, 'a:not( h2 )', 'a:not(h2)');
|
||||
(0, _ava.default)('comments - comment inside descendant selector', testLossy, "div /* wtf */.foo", "div /* wtf */.foo");
|
||||
(0, _ava.default)('comments - comment inside complex selector', testLossy, "div /* wtf */ > .foo", "div/* wtf */>.foo");
|
||||
(0, _ava.default)('comments - comment inside compound selector with space', testLossy, "div /* wtf */ .foo", "div /* wtf */.foo");
|
||||
(0, _ava.default)('@words - space before', testLossy, ' @media', '@media');
|
||||
(0, _ava.default)('@words - space after', testLossy, '@media ', '@media');
|
||||
(0, _ava.default)('@words - maintains space between', testLossy, '@media (min-width: 700px) and (orientation: landscape)', '@media (min-width: 700px) and (orientation: landscape)');
|
||||
(0, _ava.default)('@words - extraneous space between', testLossy, '@media (min-width: 700px) and (orientation: landscape)', '@media (min-width: 700px) and (orientation: landscape)');
|
||||
(0, _ava.default)('@words - multiple', testLossy, '@media (min-width: 700px), (min-height: 400px)', '@media (min-width: 700px),(min-height: 400px)');
|
||||
66
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/__tests__/namespaces.js
generated
vendored
Executable file
66
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/__tests__/namespaces.js
generated
vendored
Executable file
|
|
@ -0,0 +1,66 @@
|
|||
"use strict";
|
||||
|
||||
var _helpers = require("./util/helpers");
|
||||
|
||||
(0, _helpers.test)('match tags in the postcss namespace', 'postcss|button', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].namespace, 'postcss');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, 'button');
|
||||
});
|
||||
(0, _helpers.test)('match everything in the postcss namespace', 'postcss|*', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].namespace, 'postcss');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, '*');
|
||||
});
|
||||
(0, _helpers.test)('match any namespace', '*|button', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].namespace, '*');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, 'button');
|
||||
});
|
||||
(0, _helpers.test)('match all elements within the postcss namespace', 'postcss|*', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].namespace, 'postcss');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, '*');
|
||||
});
|
||||
(0, _helpers.test)('match all elements in all namespaces', '*|*', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].namespace, '*');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, '*');
|
||||
});
|
||||
(0, _helpers.test)('match all elements without a namespace', '|*', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].namespace, true);
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, '*');
|
||||
});
|
||||
(0, _helpers.test)('match tags with no namespace', '|button', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].namespace, true);
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, 'button');
|
||||
});
|
||||
(0, _helpers.test)('match namespace inside attribute selector', '[postcss|href=test]', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].namespace, 'postcss');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, 'test');
|
||||
});
|
||||
(0, _helpers.test)('match namespace inside attribute selector (2)', '[postcss|href]', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].namespace, 'postcss');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].attribute, 'href');
|
||||
});
|
||||
(0, _helpers.test)('match namespace inside attribute selector (3)', '[*|href]', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].namespace, '*');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].attribute, 'href');
|
||||
});
|
||||
(0, _helpers.test)('match default namespace inside attribute selector', '[|href]', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].namespace, true);
|
||||
t.deepEqual(tree.nodes[0].nodes[0].attribute, 'href');
|
||||
});
|
||||
(0, _helpers.test)('match default namespace inside attribute selector with spaces', '[ |href ]', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].namespace, true);
|
||||
t.deepEqual(tree.nodes[0].nodes[0].attribute, 'href');
|
||||
});
|
||||
(0, _helpers.test)('namespace with qualified id selector', 'ns|h1#foo', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].namespace, 'ns');
|
||||
});
|
||||
(0, _helpers.test)('namespace with qualified class selector', 'ns|h1.foo', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].namespace, 'ns');
|
||||
});
|
||||
(0, _helpers.test)('ns alias for namespace', 'f\\oo|h1.foo', function (t, tree) {
|
||||
var tag = tree.nodes[0].nodes[0];
|
||||
t.deepEqual(tag.namespace, 'foo');
|
||||
t.deepEqual(tag.ns, 'foo');
|
||||
tag.ns = "bar";
|
||||
t.deepEqual(tag.namespace, 'bar');
|
||||
t.deepEqual(tag.ns, 'bar');
|
||||
});
|
||||
40
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/__tests__/nesting.js
generated
vendored
Executable file
40
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/__tests__/nesting.js
generated
vendored
Executable file
|
|
@ -0,0 +1,40 @@
|
|||
"use strict";
|
||||
|
||||
var _helpers = require("./util/helpers");
|
||||
|
||||
(0, _helpers.test)('nesting selector', '&', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, '&');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'nesting');
|
||||
});
|
||||
(0, _helpers.test)('nesting selector followed by a class', '& .class', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, '&');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'nesting');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].value, ' ');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].type, 'combinator');
|
||||
t.deepEqual(tree.nodes[0].nodes[2].value, 'class');
|
||||
t.deepEqual(tree.nodes[0].nodes[2].type, 'class');
|
||||
});
|
||||
(0, _helpers.test)('&foo', '&foo', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, '&');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'nesting');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].value, 'foo');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].type, 'tag');
|
||||
});
|
||||
(0, _helpers.test)('&-foo', '&-foo', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, '&');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'nesting');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].value, '-foo');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].type, 'tag');
|
||||
});
|
||||
(0, _helpers.test)('&_foo', '&_foo', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, '&');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'nesting');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].value, '_foo');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].type, 'tag');
|
||||
});
|
||||
(0, _helpers.test)('&|foo', '&|foo', function (t, tree) {
|
||||
var element = tree.nodes[0].nodes[0];
|
||||
t.deepEqual(element.value, 'foo');
|
||||
t.deepEqual(element.type, 'tag');
|
||||
t.deepEqual(element.namespace, '&');
|
||||
});
|
||||
139
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/__tests__/node.js
generated
vendored
Executable file
139
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/__tests__/node.js
generated
vendored
Executable file
|
|
@ -0,0 +1,139 @@
|
|||
"use strict";
|
||||
|
||||
var _ava = _interopRequireDefault(require("ava"));
|
||||
|
||||
var _ = _interopRequireDefault(require(".."));
|
||||
|
||||
var _helpers = require("./util/helpers");
|
||||
|
||||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
||||
|
||||
(0, _ava.default)('node#clone', function (t) {
|
||||
(0, _helpers.parse)('[href="test"]', function (selectors) {
|
||||
var selector = selectors.first.first;
|
||||
var clone = selector.clone();
|
||||
delete selector.parent;
|
||||
t.deepEqual(clone, selectors.first.first);
|
||||
});
|
||||
});
|
||||
(0, _ava.default)('node#clone of attribute', function (t) {
|
||||
(0, _helpers.parse)('[href=test]', function (selectors) {
|
||||
var selector = selectors.first.first;
|
||||
var clone = selector.clone();
|
||||
delete selector.parent;
|
||||
t.deepEqual(clone, selectors.first.first);
|
||||
});
|
||||
});
|
||||
(0, _ava.default)('node#replaceWith', function (t) {
|
||||
var out = (0, _helpers.parse)('[href="test"]', function (selectors) {
|
||||
var attr = selectors.first.first;
|
||||
|
||||
var id = _.default.id({
|
||||
value: 'test'
|
||||
});
|
||||
|
||||
var className = _.default.className({
|
||||
value: 'test'
|
||||
});
|
||||
|
||||
attr.replaceWith(id, className);
|
||||
});
|
||||
t.deepEqual(out, '#test.test');
|
||||
});
|
||||
(0, _ava.default)('Node#appendToPropertyAndEscape', function (t) {
|
||||
var out = (0, _helpers.parse)('.fo\\o', function (selectors) {
|
||||
var className = selectors.first.first;
|
||||
t.deepEqual(className.raws, {
|
||||
value: "fo\\o"
|
||||
});
|
||||
className.appendToPropertyAndEscape("value", "bar", "ba\\r");
|
||||
t.deepEqual(className.raws, {
|
||||
value: "fo\\oba\\r"
|
||||
});
|
||||
});
|
||||
t.deepEqual(out, '.fo\\oba\\r');
|
||||
});
|
||||
(0, _ava.default)('Node#setPropertyAndEscape with existing raws', function (t) {
|
||||
var out = (0, _helpers.parse)('.fo\\o', function (selectors) {
|
||||
var className = selectors.first.first;
|
||||
t.deepEqual(className.raws, {
|
||||
value: "fo\\o"
|
||||
});
|
||||
className.setPropertyAndEscape("value", "bar", "ba\\r");
|
||||
t.deepEqual(className.raws, {
|
||||
value: "ba\\r"
|
||||
});
|
||||
});
|
||||
t.deepEqual(out, '.ba\\r');
|
||||
});
|
||||
(0, _ava.default)('Node#setPropertyAndEscape without existing raws', function (t) {
|
||||
var out = (0, _helpers.parse)('.foo', function (selectors) {
|
||||
var className = selectors.first.first;
|
||||
t.deepEqual(className.raws, undefined);
|
||||
className.setPropertyAndEscape("value", "bar", "ba\\r");
|
||||
t.deepEqual(className.raws, {
|
||||
value: "ba\\r"
|
||||
});
|
||||
});
|
||||
t.deepEqual(out, '.ba\\r');
|
||||
});
|
||||
(0, _ava.default)('Node#setPropertyWithoutEscape with existing raws', function (t) {
|
||||
var out = (0, _helpers.parse)('.fo\\o', function (selectors) {
|
||||
var className = selectors.first.first;
|
||||
t.deepEqual(className.raws, {
|
||||
value: "fo\\o"
|
||||
});
|
||||
className.setPropertyWithoutEscape("value", "w+t+f");
|
||||
t.deepEqual(className.raws, {});
|
||||
});
|
||||
t.deepEqual(out, '.w+t+f');
|
||||
});
|
||||
(0, _ava.default)('Node#setPropertyWithoutEscape without existing raws', function (t) {
|
||||
var out = (0, _helpers.parse)('.foo', function (selectors) {
|
||||
var className = selectors.first.first;
|
||||
t.deepEqual(className.raws, undefined);
|
||||
className.setPropertyWithoutEscape("value", "w+t+f");
|
||||
t.deepEqual(className.raws, {});
|
||||
t.deepEqual(className.value, "w+t+f");
|
||||
});
|
||||
t.deepEqual(out, '.w+t+f');
|
||||
});
|
||||
(0, _ava.default)('Node#isAtPosition', function (t) {
|
||||
(0, _helpers.parse)(':not(.foo),\n#foo > :matches(ol, ul)', function (root) {
|
||||
t.deepEqual(root.isAtPosition(1, 1), true);
|
||||
t.deepEqual(root.isAtPosition(1, 10), true);
|
||||
t.deepEqual(root.isAtPosition(2, 23), true);
|
||||
t.deepEqual(root.isAtPosition(2, 24), false);
|
||||
var selector = root.first;
|
||||
t.deepEqual(selector.isAtPosition(1, 1), true);
|
||||
t.deepEqual(selector.isAtPosition(1, 10), true);
|
||||
t.deepEqual(selector.isAtPosition(1, 11), false);
|
||||
var pseudoNot = selector.first;
|
||||
t.deepEqual(pseudoNot.isAtPosition(1, 1), true);
|
||||
t.deepEqual(pseudoNot.isAtPosition(1, 7), true);
|
||||
t.deepEqual(pseudoNot.isAtPosition(1, 10), true);
|
||||
t.deepEqual(pseudoNot.isAtPosition(1, 11), false);
|
||||
var notSelector = pseudoNot.first;
|
||||
t.deepEqual(notSelector.isAtPosition(1, 1), false);
|
||||
t.deepEqual(notSelector.isAtPosition(1, 4), false);
|
||||
t.deepEqual(notSelector.isAtPosition(1, 5), true);
|
||||
t.deepEqual(notSelector.isAtPosition(1, 6), true);
|
||||
t.deepEqual(notSelector.isAtPosition(1, 9), true);
|
||||
t.deepEqual(notSelector.isAtPosition(1, 10), true);
|
||||
t.deepEqual(notSelector.isAtPosition(1, 11), false);
|
||||
var notClass = notSelector.first;
|
||||
t.deepEqual(notClass.isAtPosition(1, 5), false);
|
||||
t.deepEqual(notClass.isAtPosition(1, 6), true);
|
||||
t.deepEqual(notClass.isAtPosition(1, 9), true);
|
||||
t.deepEqual(notClass.isAtPosition(1, 10), false);
|
||||
var secondSel = root.at(1);
|
||||
t.deepEqual(secondSel.isAtPosition(1, 11), false);
|
||||
t.deepEqual(secondSel.isAtPosition(2, 1), true);
|
||||
t.deepEqual(secondSel.isAtPosition(2, 23), true);
|
||||
t.deepEqual(secondSel.isAtPosition(2, 24), false);
|
||||
var combinator = secondSel.at(1);
|
||||
t.deepEqual(combinator.isAtPosition(2, 5), false);
|
||||
t.deepEqual(combinator.isAtPosition(2, 6), true);
|
||||
t.deepEqual(combinator.isAtPosition(2, 7), false);
|
||||
});
|
||||
});
|
||||
38
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/__tests__/nonstandard.js
generated
vendored
Executable file
38
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/__tests__/nonstandard.js
generated
vendored
Executable file
|
|
@ -0,0 +1,38 @@
|
|||
"use strict";
|
||||
|
||||
var _helpers = require("./util/helpers");
|
||||
|
||||
(0, _helpers.test)('non-standard selector', '.icon.is-$(network)', function (t, tree) {
|
||||
var class1 = tree.nodes[0].nodes[0];
|
||||
t.deepEqual(class1.value, 'icon');
|
||||
t.deepEqual(class1.type, 'class');
|
||||
var class2 = tree.nodes[0].nodes[1];
|
||||
t.deepEqual(class2.value, 'is-$(network)');
|
||||
t.deepEqual(class2.type, 'class');
|
||||
});
|
||||
(0, _helpers.test)('at word in selector', 'em@il.com', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, 'em@il');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].value, 'com');
|
||||
});
|
||||
(0, _helpers.test)('leading combinator', '> *', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, '>');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].value, '*');
|
||||
});
|
||||
(0, _helpers.test)('sass escapes', '.#{$classname}', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes.map(function (n) {
|
||||
return n.type;
|
||||
}), ["class"]);
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, "#{$classname}");
|
||||
});
|
||||
(0, _helpers.test)('sass escapes (2)', '[lang=#{$locale}]', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes.map(function (n) {
|
||||
return n.type;
|
||||
}), ["attribute"]);
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, "#{$locale}");
|
||||
});
|
||||
(0, _helpers.test)('placeholder', '%foo', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes.map(function (n) {
|
||||
return n.type;
|
||||
}), ["tag"]);
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, "%foo");
|
||||
});
|
||||
259
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/__tests__/parser.js
generated
vendored
Executable file
259
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/__tests__/parser.js
generated
vendored
Executable file
|
|
@ -0,0 +1,259 @@
|
|||
"use strict";
|
||||
|
||||
var _ava = _interopRequireDefault(require("ava"));
|
||||
|
||||
var _index = _interopRequireDefault(require("../index"));
|
||||
|
||||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
||||
|
||||
// Node creation
|
||||
var nodeTypes = [['attribute', '[href]', {
|
||||
attribute: 'href'
|
||||
}], ['className', '.classy', {
|
||||
value: 'classy'
|
||||
}], ['combinator', ' >> ', {
|
||||
value: '>>',
|
||||
spaces: {
|
||||
before: ' ',
|
||||
after: ' '
|
||||
}
|
||||
}], ['comment', '/* comment */', {
|
||||
value: '/* comment */'
|
||||
}], ['id', '#test', {
|
||||
value: 'test'
|
||||
}], ['nesting', '&'], ['pseudo', '::before', {
|
||||
value: '::before'
|
||||
}], ['string', '"wow"', {
|
||||
value: '"wow"'
|
||||
}], ['tag', 'button', {
|
||||
value: 'button'
|
||||
}], ['universal', '*']];
|
||||
nodeTypes.forEach(function (type) {
|
||||
(0, _ava.default)("parser#" + type[0], function (t) {
|
||||
var node = _index.default[type[0]](type[2] || {});
|
||||
|
||||
t.deepEqual(String(node), type[1]);
|
||||
});
|
||||
});
|
||||
(0, _ava.default)('string constants', function (t) {
|
||||
t.truthy(_index.default.TAG);
|
||||
t.truthy(_index.default.STRING);
|
||||
t.truthy(_index.default.SELECTOR);
|
||||
t.truthy(_index.default.ROOT);
|
||||
t.truthy(_index.default.PSEUDO);
|
||||
t.truthy(_index.default.NESTING);
|
||||
t.truthy(_index.default.ID);
|
||||
t.truthy(_index.default.COMMENT);
|
||||
t.truthy(_index.default.COMBINATOR);
|
||||
t.truthy(_index.default.CLASS);
|
||||
t.truthy(_index.default.ATTRIBUTE);
|
||||
t.truthy(_index.default.UNIVERSAL);
|
||||
});
|
||||
(0, _ava.default)('construct a whole tree', function (t) {
|
||||
var root = _index.default.root();
|
||||
|
||||
var selector = _index.default.selector();
|
||||
|
||||
selector.append(_index.default.id({
|
||||
value: 'tree'
|
||||
}));
|
||||
root.append(selector);
|
||||
t.deepEqual(String(root), '#tree');
|
||||
});
|
||||
(0, _ava.default)('no operation', function (t) {
|
||||
t.notThrows(function () {
|
||||
return (0, _index.default)().processSync('h1 h2 h3');
|
||||
});
|
||||
});
|
||||
(0, _ava.default)('empty selector string', function (t) {
|
||||
t.notThrows(function () {
|
||||
return (0, _index.default)(function (selectors) {
|
||||
selectors.walk(function (selector) {
|
||||
selector.type = 'tag';
|
||||
});
|
||||
}).processSync('');
|
||||
});
|
||||
});
|
||||
(0, _ava.default)('async parser', function (t) {
|
||||
return (0, _index.default)(function (selectors) {
|
||||
return new Promise(function (res) {
|
||||
setTimeout(function () {
|
||||
selectors.first.nodes[0].value = 'bar';
|
||||
res();
|
||||
}, 1);
|
||||
});
|
||||
}).process('foo').then(function (result) {
|
||||
t.deepEqual(result, 'bar');
|
||||
});
|
||||
});
|
||||
(0, _ava.default)('parse errors with the async parser', function (t) {
|
||||
return (0, _index.default)(function (selectors) {
|
||||
return new Promise(function (res) {
|
||||
setTimeout(function () {
|
||||
selectors.first.nodes[0].value = 'bar';
|
||||
res();
|
||||
}, 1);
|
||||
});
|
||||
}).process('a b: c').catch(function (err) {
|
||||
return t.truthy(err);
|
||||
});
|
||||
});
|
||||
(0, _ava.default)('parse errors within the async processor', function (t) {
|
||||
return (0, _index.default)(function (selectors) {
|
||||
return new Promise(function (res, rej) {
|
||||
setTimeout(function () {
|
||||
rej(selectors.error("async error"));
|
||||
}, 1);
|
||||
});
|
||||
}).process('.foo').catch(function (err) {
|
||||
return t.truthy(err);
|
||||
});
|
||||
});
|
||||
(0, _ava.default)('parse errors within the async processor before the promise returns', function (t) {
|
||||
return (0, _index.default)(function (selectors) {
|
||||
throw selectors.error("async error");
|
||||
}).process('.foo').catch(function (err) {
|
||||
return t.truthy(err);
|
||||
});
|
||||
});
|
||||
(0, _ava.default)('returning a promise to the sync processor fails', function (t) {
|
||||
t.throws(function () {
|
||||
return (0, _index.default)(function () {
|
||||
return new Promise(function (res) {
|
||||
setTimeout(function () {
|
||||
res();
|
||||
}, 1);
|
||||
});
|
||||
}).processSync('.foo');
|
||||
});
|
||||
});
|
||||
(0, _ava.default)('Passing a rule works async', function (t) {
|
||||
var rule = {
|
||||
selector: '.foo'
|
||||
};
|
||||
return (0, _index.default)(function (root) {
|
||||
return new Promise(function (res) {
|
||||
setTimeout(function () {
|
||||
root.walkClasses(function (node) {
|
||||
node.value = "bar";
|
||||
});
|
||||
res();
|
||||
}, 1);
|
||||
});
|
||||
}).process(rule).then(function (newSel) {
|
||||
t.deepEqual(newSel, ".bar");
|
||||
t.deepEqual(rule.selector, ".bar");
|
||||
});
|
||||
});
|
||||
(0, _ava.default)('Passing a rule with mutation disabled works async', function (t) {
|
||||
var rule = {
|
||||
selector: '.foo'
|
||||
};
|
||||
return (0, _index.default)(function (root) {
|
||||
return new Promise(function (res) {
|
||||
setTimeout(function () {
|
||||
root.walkClasses(function (node) {
|
||||
node.value = "bar";
|
||||
});
|
||||
res();
|
||||
}, 1);
|
||||
});
|
||||
}).process(rule, {
|
||||
updateSelector: false
|
||||
}).then(function (newSel) {
|
||||
t.deepEqual(newSel, ".bar");
|
||||
t.deepEqual(rule.selector, ".foo");
|
||||
});
|
||||
});
|
||||
(0, _ava.default)('Passing a rule with mutation works sync', function (t) {
|
||||
var rule = {
|
||||
selector: '.foo'
|
||||
};
|
||||
var newSel = (0, _index.default)(function (root) {
|
||||
root.walkClasses(function (node) {
|
||||
node.value = "bar";
|
||||
});
|
||||
}).processSync(rule, {
|
||||
updateSelector: true
|
||||
});
|
||||
t.deepEqual(newSel, ".bar");
|
||||
t.deepEqual(rule.selector, ".bar");
|
||||
});
|
||||
(0, _ava.default)('Transform a selector synchronously', function (t) {
|
||||
var rule = {
|
||||
selector: '.foo'
|
||||
};
|
||||
var count = (0, _index.default)(function (root) {
|
||||
var classCount = 0;
|
||||
root.walkClasses(function (node) {
|
||||
classCount++;
|
||||
node.value = "bar";
|
||||
});
|
||||
return classCount;
|
||||
}).transformSync(rule, {
|
||||
updateSelector: true
|
||||
});
|
||||
t.deepEqual(count, 1);
|
||||
t.deepEqual(rule.selector, ".bar");
|
||||
});
|
||||
(0, _ava.default)('Transform a selector asynchronously', function (t) {
|
||||
var rule = {
|
||||
selector: '.foo'
|
||||
};
|
||||
return (0, _index.default)(function (root) {
|
||||
return new Promise(function (res) {
|
||||
setTimeout(function () {
|
||||
var classCount = 0;
|
||||
root.walkClasses(function (node) {
|
||||
classCount++;
|
||||
node.value = "bar";
|
||||
});
|
||||
res(classCount);
|
||||
}, 1);
|
||||
});
|
||||
}).transform(rule, {
|
||||
updateSelector: true
|
||||
}).then(function (count) {
|
||||
t.deepEqual(count, 1);
|
||||
t.deepEqual(rule.selector, ".bar");
|
||||
});
|
||||
});
|
||||
(0, _ava.default)('get AST of a selector synchronously', function (t) {
|
||||
var rule = {
|
||||
selector: '.foo'
|
||||
};
|
||||
var ast = (0, _index.default)(function (root) {
|
||||
var classCount = 0;
|
||||
root.walkClasses(function (node) {
|
||||
classCount++;
|
||||
node.value = "bar";
|
||||
});
|
||||
return classCount;
|
||||
}).astSync(rule, {
|
||||
updateSelector: true
|
||||
});
|
||||
t.deepEqual(ast.nodes[0].nodes[0].value, "bar");
|
||||
t.deepEqual(rule.selector, ".bar");
|
||||
});
|
||||
(0, _ava.default)('get AST a selector asynchronously', function (t) {
|
||||
var rule = {
|
||||
selector: '.foo'
|
||||
};
|
||||
return (0, _index.default)(function (root) {
|
||||
return new Promise(function (res) {
|
||||
setTimeout(function () {
|
||||
var classCount = 0;
|
||||
root.walkClasses(function (node) {
|
||||
classCount++;
|
||||
node.value = "bar";
|
||||
});
|
||||
res(classCount);
|
||||
}, 1);
|
||||
});
|
||||
}).ast(rule, {
|
||||
updateSelector: true
|
||||
}).then(function (ast) {
|
||||
t.deepEqual(ast.nodes[0].nodes[0].value, "bar");
|
||||
t.deepEqual(rule.selector, ".bar");
|
||||
});
|
||||
});
|
||||
46
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/__tests__/postcss.js
generated
vendored
Executable file
46
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/__tests__/postcss.js
generated
vendored
Executable file
|
|
@ -0,0 +1,46 @@
|
|||
"use strict";
|
||||
|
||||
var _ava = _interopRequireDefault(require("ava"));
|
||||
|
||||
var _postcss = _interopRequireDefault(require("postcss"));
|
||||
|
||||
var _helpers = require("./util/helpers");
|
||||
|
||||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
||||
|
||||
var cse = 'CssSyntaxError';
|
||||
|
||||
function showCode(t, selector) {
|
||||
var rule = _postcss.default.parse(selector).first;
|
||||
|
||||
try {
|
||||
(0, _helpers.parse)(rule);
|
||||
} catch (e) {
|
||||
if (e.name !== cse) {
|
||||
return;
|
||||
} // Removes ANSI codes from snapshot tests as it makes them illegible.
|
||||
// The formatting of this error is otherwise identical to e.toString()
|
||||
|
||||
|
||||
t.snapshot(cse + ": " + e.message + "\n\n" + e.showSourceCode(false) + "\n");
|
||||
}
|
||||
}
|
||||
|
||||
(0, _ava.default)('missing open square bracket', showCode, 'a b c] {}');
|
||||
(0, _ava.default)('missing open parenthesis', showCode, 'a b c) {}');
|
||||
(0, _ava.default)('missing pseudo class or pseudo element', showCode, 'a b c: {}');
|
||||
(0, _ava.default)('space in between colon and word (incorrect pseudo)', showCode, 'a b: c {}');
|
||||
(0, _ava.default)('string after colon (incorrect pseudo)', showCode, 'a b:"wow" {}'); // attribute selectors
|
||||
|
||||
(0, _ava.default)('bad string attribute', showCode, '["hello"] {}');
|
||||
(0, _ava.default)('bad string attribute with value', showCode, '["foo"=bar] {}');
|
||||
(0, _ava.default)('bad parentheses', showCode, '[foo=(bar)] {}');
|
||||
(0, _ava.default)('bad lonely asterisk', showCode, '[*] {}');
|
||||
(0, _ava.default)('bad lonely pipe', showCode, '[|] {}');
|
||||
(0, _ava.default)('bad lonely caret', showCode, '[^] {}');
|
||||
(0, _ava.default)('bad lonely dollar', showCode, '[$] {}');
|
||||
(0, _ava.default)('bad lonely tilde', showCode, '[~] {}');
|
||||
(0, _ava.default)('bad lonely equals', showCode, '[=] {}');
|
||||
(0, _ava.default)('bad lonely operator', showCode, '[*=] {}');
|
||||
(0, _ava.default)('bad lonely operator (2)', showCode, '[|=] {}');
|
||||
(0, _ava.default)('bad doubled operator', showCode, '[href=foo=bar] {}');
|
||||
98
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/__tests__/pseudos.js
generated
vendored
Executable file
98
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/__tests__/pseudos.js
generated
vendored
Executable file
|
|
@ -0,0 +1,98 @@
|
|||
"use strict";
|
||||
|
||||
var _helpers = require("./util/helpers");
|
||||
|
||||
(0, _helpers.test)('pseudo element (single colon)', 'h1:after', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'tag');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].type, 'pseudo');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].value, ':after');
|
||||
});
|
||||
(0, _helpers.test)('pseudo element (double colon)', 'h1::after', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'tag');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].type, 'pseudo');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].value, '::after');
|
||||
});
|
||||
(0, _helpers.test)('multiple pseudo elements', '*:target::before, a:after', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, '*');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].value, ':target');
|
||||
t.deepEqual(tree.nodes[0].nodes[2].value, '::before');
|
||||
t.deepEqual(tree.nodes[1].nodes[1].value, ':after');
|
||||
});
|
||||
(0, _helpers.test)('negation pseudo element', 'h1:not(.heading)', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[1].value, ':not');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].nodes[0].nodes[0].value, 'heading');
|
||||
});
|
||||
(0, _helpers.test)('negation pseudo element (2)', 'h1:not(.heading, .title, .content)', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[1].value, ':not');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].nodes[0].nodes[0].value, 'heading');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].nodes[1].nodes[0].value, 'title');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].nodes[2].nodes[0].value, 'content');
|
||||
});
|
||||
(0, _helpers.test)('negation pseudo element (3)', 'h1:not(.heading > .title) > h1', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[1].nodes[0].nodes[0].value, 'heading');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].nodes[0].nodes[1].value, '>');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].nodes[0].nodes[2].value, 'title');
|
||||
t.deepEqual(tree.nodes[0].nodes[2].value, '>');
|
||||
t.deepEqual(tree.nodes[0].nodes[3].value, 'h1');
|
||||
});
|
||||
(0, _helpers.test)('negation pseudo element (4)', 'h1:not(h2:not(h3))', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[1].nodes[0].nodes[1].nodes[0].nodes[0].value, 'h3');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].nodes[0].nodes[1].nodes[0].nodes[0].parent.type, 'selector');
|
||||
});
|
||||
(0, _helpers.test)('pseudo class in the middle of a selector', 'a:link.external', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'tag');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, 'a');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].type, 'pseudo');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].value, ':link');
|
||||
t.deepEqual(tree.nodes[0].nodes[2].type, 'class');
|
||||
t.deepEqual(tree.nodes[0].nodes[2].value, 'external');
|
||||
});
|
||||
(0, _helpers.test)('extra whitespace inside parentheses', 'a:not( h2 )', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[1].nodes[0].nodes[0].value, 'h2');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].nodes[0].nodes[0].spaces.after, ' ');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].nodes[0].nodes[0].spaces.before, ' ');
|
||||
});
|
||||
(0, _helpers.test)('escaped numbers in class name with pseudo', 'a:before.\\31\\ 0', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[2].type, 'class');
|
||||
t.deepEqual(tree.nodes[0].nodes[2].value, '1 0');
|
||||
t.deepEqual(tree.nodes[0].nodes[2].raws.value, '\\31\\ 0');
|
||||
});
|
||||
(0, _helpers.test)('nested pseudo', '.btn-group>.btn:last-child:not(:first-child)', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[4].value, ':not');
|
||||
});
|
||||
(0, _helpers.test)('extraneous non-combinating whitespace', ' h1:after , h2:after ', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].spaces.before, ' ');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].value, ':after');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].spaces.after, ' ');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].spaces.before, ' ');
|
||||
t.deepEqual(tree.nodes[1].nodes[1].value, ':after');
|
||||
t.deepEqual(tree.nodes[1].nodes[1].spaces.after, ' ');
|
||||
});
|
||||
(0, _helpers.test)('negation pseudo element with quotes', 'h1:not(".heading")', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[1].value, ':not');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].nodes[0].nodes[0].value, '".heading"');
|
||||
});
|
||||
(0, _helpers.test)('negation pseudo element with single quotes', "h1:not('.heading')", function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[1].value, ':not');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].nodes[0].nodes[0].value, "'.heading'");
|
||||
});
|
||||
(0, _helpers.test)('Issue #116', "svg:not(:root)", function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[1].value, ':not');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].nodes[0].nodes[0].value, ':root');
|
||||
});
|
||||
(0, _helpers.test)('alone pseudo class', ':root', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'pseudo');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, ':root');
|
||||
});
|
||||
(0, _helpers.test)('non standard pseudo (@custom-selector)', ":--foobar, a", function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, ':--foobar');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'pseudo');
|
||||
t.deepEqual(tree.nodes[1].nodes[0].value, 'a');
|
||||
t.deepEqual(tree.nodes[1].nodes[0].type, 'tag');
|
||||
});
|
||||
(0, _helpers.test)('non standard pseudo (@custom-selector) (1)', "a, :--foobar", function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, 'a');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'tag');
|
||||
t.deepEqual(tree.nodes[1].nodes[0].value, ':--foobar');
|
||||
t.deepEqual(tree.nodes[1].nodes[0].type, 'pseudo');
|
||||
});
|
||||
229
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/__tests__/sourceIndex.js
generated
vendored
Executable file
229
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/__tests__/sourceIndex.js
generated
vendored
Executable file
|
|
@ -0,0 +1,229 @@
|
|||
"use strict";
|
||||
|
||||
var _helpers = require("./util/helpers");
|
||||
|
||||
(0, _helpers.test)('universal selector', '*', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].source.start.column, 1);
|
||||
t.deepEqual(tree.nodes[0].nodes[0].source.end.column, 1);
|
||||
t.deepEqual(tree.nodes[0].nodes[0].sourceIndex, 0);
|
||||
});
|
||||
(0, _helpers.test)('lobotomized owl selector', ' * + * ', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].source.start.column, 2);
|
||||
t.deepEqual(tree.nodes[0].nodes[0].source.end.column, 2);
|
||||
t.deepEqual(tree.nodes[0].nodes[0].sourceIndex, 1);
|
||||
t.deepEqual(tree.nodes[0].nodes[1].source.start.column, 4);
|
||||
t.deepEqual(tree.nodes[0].nodes[1].source.end.column, 4);
|
||||
t.deepEqual(tree.nodes[0].nodes[1].sourceIndex, 3);
|
||||
t.deepEqual(tree.nodes[0].nodes[2].source.start.column, 6);
|
||||
t.deepEqual(tree.nodes[0].nodes[2].source.end.column, 6);
|
||||
t.deepEqual(tree.nodes[0].nodes[2].sourceIndex, 5);
|
||||
});
|
||||
(0, _helpers.test)('comment', '/**\n * Hello!\n */', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].source.start.column, 1);
|
||||
t.deepEqual(tree.nodes[0].nodes[0].source.end.column, 3);
|
||||
t.deepEqual(tree.nodes[0].nodes[0].sourceIndex, 0);
|
||||
});
|
||||
(0, _helpers.test)('comment & universal selectors', '*/*test*/*', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].source.start.column, 1);
|
||||
t.deepEqual(tree.nodes[0].nodes[0].source.end.column, 1);
|
||||
t.deepEqual(tree.nodes[0].nodes[0].sourceIndex, 0);
|
||||
t.deepEqual(tree.nodes[0].nodes[1].source.start.column, 2);
|
||||
t.deepEqual(tree.nodes[0].nodes[1].source.end.column, 9);
|
||||
t.deepEqual(tree.nodes[0].nodes[1].sourceIndex, 1);
|
||||
t.deepEqual(tree.nodes[0].nodes[2].source.start.column, 10);
|
||||
t.deepEqual(tree.nodes[0].nodes[2].source.end.column, 10);
|
||||
t.deepEqual(tree.nodes[0].nodes[2].sourceIndex, 9);
|
||||
});
|
||||
(0, _helpers.test)('tag selector', 'h1', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].source.start.column, 1);
|
||||
t.deepEqual(tree.nodes[0].nodes[0].source.end.column, 2);
|
||||
t.deepEqual(tree.nodes[0].nodes[0].sourceIndex, 0);
|
||||
});
|
||||
(0, _helpers.test)('id selector', '#id', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].source.start.column, 1);
|
||||
t.deepEqual(tree.nodes[0].nodes[0].source.end.column, 3);
|
||||
t.deepEqual(tree.nodes[0].nodes[0].sourceIndex, 0);
|
||||
});
|
||||
(0, _helpers.test)('tag selector followed by id selector', 'h1, #id', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].source.start.column, 1);
|
||||
t.deepEqual(tree.nodes[0].nodes[0].source.end.column, 2);
|
||||
t.deepEqual(tree.nodes[0].nodes[0].sourceIndex, 0);
|
||||
t.deepEqual(tree.nodes[1].nodes[0].source.start.column, 5);
|
||||
t.deepEqual(tree.nodes[1].nodes[0].source.end.column, 7);
|
||||
t.deepEqual(tree.nodes[1].nodes[0].sourceIndex, 4);
|
||||
});
|
||||
(0, _helpers.test)('multiple id selectors', '#one#two', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].source.start.column, 1);
|
||||
t.deepEqual(tree.nodes[0].nodes[0].source.end.column, 4);
|
||||
t.deepEqual(tree.nodes[0].nodes[0].sourceIndex, 0);
|
||||
t.deepEqual(tree.nodes[0].nodes[1].source.start.column, 5);
|
||||
t.deepEqual(tree.nodes[0].nodes[1].source.end.column, 8);
|
||||
t.deepEqual(tree.nodes[0].nodes[1].sourceIndex, 4);
|
||||
});
|
||||
(0, _helpers.test)('multiple id selectors (2)', '#one#two#three#four', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[2].source.start.column, 9);
|
||||
t.deepEqual(tree.nodes[0].nodes[2].source.end.column, 14);
|
||||
t.deepEqual(tree.nodes[0].nodes[2].sourceIndex, 8);
|
||||
t.deepEqual(tree.nodes[0].nodes[3].source.start.column, 15);
|
||||
t.deepEqual(tree.nodes[0].nodes[3].source.end.column, 19);
|
||||
t.deepEqual(tree.nodes[0].nodes[3].sourceIndex, 14);
|
||||
});
|
||||
(0, _helpers.test)('multiple id selectors (3)', '#one#two,#three#four', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[1].source.start.column, 5);
|
||||
t.deepEqual(tree.nodes[0].nodes[1].source.end.column, 8);
|
||||
t.deepEqual(tree.nodes[0].nodes[1].sourceIndex, 4);
|
||||
t.deepEqual(tree.nodes[1].nodes[1].source.start.column, 16);
|
||||
t.deepEqual(tree.nodes[1].nodes[1].source.end.column, 20);
|
||||
t.deepEqual(tree.nodes[1].nodes[1].sourceIndex, 15);
|
||||
});
|
||||
(0, _helpers.test)('multiple class selectors', '.one.two,.three.four', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[1].source.start.column, 5);
|
||||
t.deepEqual(tree.nodes[0].nodes[1].source.end.column, 8);
|
||||
t.deepEqual(tree.nodes[0].nodes[1].sourceIndex, 4);
|
||||
t.deepEqual(tree.nodes[1].nodes[1].source.start.column, 16);
|
||||
t.deepEqual(tree.nodes[1].nodes[1].source.end.column, 20);
|
||||
t.deepEqual(tree.nodes[1].nodes[1].sourceIndex, 15);
|
||||
});
|
||||
(0, _helpers.test)('attribute selector', '[name="james"]', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].source.start.line, 1);
|
||||
t.deepEqual(tree.nodes[0].nodes[0].source.start.column, 1);
|
||||
t.deepEqual(tree.nodes[0].nodes[0].source.end.column, 14);
|
||||
t.deepEqual(tree.nodes[0].nodes[0].sourceIndex, 0);
|
||||
});
|
||||
(0, _helpers.test)('multiple attribute selectors', '[name="james"][name="ed"],[name="snakeman"][name="a"]', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].source.start.line, 1);
|
||||
t.deepEqual(tree.nodes[0].nodes[0].source.start.column, 1);
|
||||
t.deepEqual(tree.nodes[0].nodes[0].source.end.line, 1);
|
||||
t.deepEqual(tree.nodes[0].nodes[0].source.end.column, 14);
|
||||
t.deepEqual(tree.nodes[0].nodes[0].sourceIndex, 0);
|
||||
t.deepEqual(tree.nodes[0].nodes[1].source.start.line, 1);
|
||||
t.deepEqual(tree.nodes[0].nodes[1].source.start.column, 15);
|
||||
t.deepEqual(tree.nodes[0].nodes[1].source.end.line, 1);
|
||||
t.deepEqual(tree.nodes[0].nodes[1].source.end.column, 25);
|
||||
t.deepEqual(tree.nodes[0].nodes[1].sourceIndex, 14);
|
||||
t.deepEqual(tree.nodes[1].nodes[0].source.start.line, 1);
|
||||
t.deepEqual(tree.nodes[1].nodes[0].source.start.column, 27);
|
||||
t.deepEqual(tree.nodes[1].nodes[0].source.end.line, 1);
|
||||
t.deepEqual(tree.nodes[1].nodes[0].source.end.column, 43);
|
||||
t.deepEqual(tree.nodes[1].nodes[0].sourceIndex, 26);
|
||||
t.deepEqual(tree.nodes[1].nodes[1].source.start.line, 1);
|
||||
t.deepEqual(tree.nodes[1].nodes[1].source.start.column, 44);
|
||||
t.deepEqual(tree.nodes[1].nodes[1].source.end.line, 1);
|
||||
t.deepEqual(tree.nodes[1].nodes[1].source.end.column, 53);
|
||||
t.deepEqual(tree.nodes[1].nodes[1].sourceIndex, 43);
|
||||
});
|
||||
(0, _helpers.test)('pseudo-class', 'h1:first-child', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[1].source.start.line, 1);
|
||||
t.deepEqual(tree.nodes[0].nodes[1].source.start.column, 3);
|
||||
t.deepEqual(tree.nodes[0].nodes[1].source.end.column, 14);
|
||||
t.deepEqual(tree.nodes[0].nodes[1].sourceIndex, 2);
|
||||
});
|
||||
(0, _helpers.test)('pseudo-class with argument', 'h1:not(.strudel, .food)', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[1].source.start.line, 1);
|
||||
t.deepEqual(tree.nodes[0].nodes[1].source.start.column, 3);
|
||||
t.deepEqual(tree.nodes[0].nodes[1].source.end.column, 23);
|
||||
t.deepEqual(tree.nodes[0].nodes[1].sourceIndex, 2);
|
||||
});
|
||||
(0, _helpers.test)('pseudo-element', 'h1::before', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[1].source.start.line, 1);
|
||||
t.deepEqual(tree.nodes[0].nodes[1].source.start.column, 3);
|
||||
t.deepEqual(tree.nodes[0].nodes[1].source.end.column, 10);
|
||||
t.deepEqual(tree.nodes[0].nodes[1].sourceIndex, 2);
|
||||
});
|
||||
(0, _helpers.test)('multiple pseudos', 'h1:not(.food)::before, a:first-child', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[1].source.start.line, 1);
|
||||
t.deepEqual(tree.nodes[0].nodes[1].source.start.column, 3);
|
||||
t.deepEqual(tree.nodes[0].nodes[1].source.end.column, 13);
|
||||
t.deepEqual(tree.nodes[0].nodes[1].sourceIndex, 2);
|
||||
t.deepEqual(tree.nodes[0].nodes[2].source.start.line, 1);
|
||||
t.deepEqual(tree.nodes[0].nodes[2].source.start.column, 14);
|
||||
t.deepEqual(tree.nodes[0].nodes[2].source.end.column, 21);
|
||||
t.deepEqual(tree.nodes[0].nodes[2].sourceIndex, 13);
|
||||
t.deepEqual(tree.nodes[1].nodes[1].source.start.line, 1);
|
||||
t.deepEqual(tree.nodes[1].nodes[1].source.start.column, 25);
|
||||
t.deepEqual(tree.nodes[1].nodes[1].source.end.column, 36);
|
||||
t.deepEqual(tree.nodes[1].nodes[1].sourceIndex, 24);
|
||||
});
|
||||
(0, _helpers.test)('combinators', 'div > h1 span', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[1].source.start.line, 1, "> start line");
|
||||
t.deepEqual(tree.nodes[0].nodes[1].source.start.column, 5, "> start column");
|
||||
t.deepEqual(tree.nodes[0].nodes[1].source.end.column, 5, "> end column");
|
||||
t.deepEqual(tree.nodes[0].nodes[1].sourceIndex, 4, "> sourceIndex");
|
||||
t.deepEqual(tree.nodes[0].nodes[3].source.start.line, 1, "' ' start line");
|
||||
t.deepEqual(tree.nodes[0].nodes[3].source.start.column, 9, "' ' start column");
|
||||
t.deepEqual(tree.nodes[0].nodes[3].source.end.column, 9, "' ' end column");
|
||||
t.deepEqual(tree.nodes[0].nodes[3].sourceIndex, 8, "' ' sourceIndex");
|
||||
});
|
||||
(0, _helpers.test)('combinators surrounded by superfluous spaces', 'div > h1 ~ span a', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[1].source.start.line, 1, "> start line");
|
||||
t.deepEqual(tree.nodes[0].nodes[1].source.start.column, 7, "> start column");
|
||||
t.deepEqual(tree.nodes[0].nodes[1].source.end.column, 7, "> end column");
|
||||
t.deepEqual(tree.nodes[0].nodes[1].sourceIndex, 6, "> sourceIndex");
|
||||
t.deepEqual(tree.nodes[0].nodes[3].source.start.line, 1, "~ start line");
|
||||
t.deepEqual(tree.nodes[0].nodes[3].source.start.column, 13, "~ start column");
|
||||
t.deepEqual(tree.nodes[0].nodes[3].source.end.column, 13, "~ end column");
|
||||
t.deepEqual(tree.nodes[0].nodes[3].sourceIndex, 12, "~ sourceIndex");
|
||||
t.deepEqual(tree.nodes[0].nodes[5].source.start.line, 1, "' ' start line");
|
||||
t.deepEqual(tree.nodes[0].nodes[5].source.start.column, 21, "' ' start column");
|
||||
t.deepEqual(tree.nodes[0].nodes[5].source.end.column, 23, "' ' end column");
|
||||
t.deepEqual(tree.nodes[0].nodes[5].sourceIndex, 20, "' ' sourceIndex");
|
||||
});
|
||||
(0, _helpers.test)('multiple id selectors on different lines', '#one,\n#two', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].source.start.line, 1);
|
||||
t.deepEqual(tree.nodes[0].nodes[0].source.start.column, 1);
|
||||
t.deepEqual(tree.nodes[0].nodes[0].source.end.column, 4);
|
||||
t.deepEqual(tree.nodes[0].nodes[0].sourceIndex, 0);
|
||||
t.deepEqual(tree.nodes[1].nodes[0].source.start.line, 2);
|
||||
t.deepEqual(tree.nodes[1].nodes[0].source.start.column, 1);
|
||||
t.deepEqual(tree.nodes[1].nodes[0].source.end.column, 4);
|
||||
t.deepEqual(tree.nodes[1].nodes[0].sourceIndex, 6);
|
||||
});
|
||||
(0, _helpers.test)('multiple id selectors on different CRLF lines', '#one,\r\n#two,\r\n#three', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].source.start.line, 1, '#one start line');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].source.start.column, 1, '#one start column');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].source.end.column, 4, '#one end column');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].sourceIndex, 0, '#one sourceIndex');
|
||||
t.deepEqual(tree.nodes[1].nodes[0].source.start.line, 2, '#two start line');
|
||||
t.deepEqual(tree.nodes[1].nodes[0].source.start.column, 1, '#two start column');
|
||||
t.deepEqual(tree.nodes[1].nodes[0].source.end.column, 4, '#two end column');
|
||||
t.deepEqual(tree.nodes[1].nodes[0].sourceIndex, 7, '#two sourceIndex');
|
||||
t.deepEqual(tree.nodes[2].nodes[0].source.start.line, 3, '#three start line');
|
||||
t.deepEqual(tree.nodes[2].nodes[0].source.start.column, 1, '#three start column');
|
||||
t.deepEqual(tree.nodes[2].nodes[0].source.end.column, 6, '#three end column');
|
||||
t.deepEqual(tree.nodes[2].nodes[0].sourceIndex, 14, '#three sourceIndex');
|
||||
});
|
||||
(0, _helpers.test)('id, tag, pseudo, and class selectors on different lines with indentation', '\t#one,\n\th1:after,\n\t\t.two', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].source.start.line, 1, '#one start line');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].source.start.column, 2, '#one start column');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].source.end.column, 5, '#one end column');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].sourceIndex, 1, '#one sourceIndex');
|
||||
t.deepEqual(tree.nodes[1].nodes[0].source.start.line, 2, 'h1 start line');
|
||||
t.deepEqual(tree.nodes[1].nodes[0].source.start.column, 2, 'h1 start column');
|
||||
t.deepEqual(tree.nodes[1].nodes[0].source.end.column, 3, 'h1 end column');
|
||||
t.deepEqual(tree.nodes[1].nodes[0].sourceIndex, 8, 'h1 sourceIndex');
|
||||
t.deepEqual(tree.nodes[1].nodes[1].source.start.line, 2, ':after start line');
|
||||
t.deepEqual(tree.nodes[1].nodes[1].source.start.column, 4, ':after start column');
|
||||
t.deepEqual(tree.nodes[1].nodes[1].source.end.column, 9, ':after end column');
|
||||
t.deepEqual(tree.nodes[1].nodes[1].sourceIndex, 10, ':after sourceIndex');
|
||||
t.deepEqual(tree.nodes[2].nodes[0].source.start.line, 3, '.two start line');
|
||||
t.deepEqual(tree.nodes[2].nodes[0].source.start.column, 3, '.two start column');
|
||||
t.deepEqual(tree.nodes[2].nodes[0].source.end.column, 6, '.two end column');
|
||||
t.deepEqual(tree.nodes[2].nodes[0].sourceIndex, 20, '.two sourceIndex');
|
||||
});
|
||||
(0, _helpers.test)('pseudo with arguments spanning multiple lines', 'h1:not(\n\t.one,\n\t.two\n)', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[1].source.start.line, 1, ':not start line');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].source.start.column, 3, ':not start column');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].source.end.line, 4, ':not end line');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].source.end.column, 1, ':not end column');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].sourceIndex, 2, ':not sourceIndex');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].nodes[0].nodes[0].source.start.line, 2, '.one start line');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].nodes[0].nodes[0].source.start.column, 2, '.one start column');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].nodes[0].nodes[0].source.end.line, 2, '.one end line');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].nodes[0].nodes[0].source.end.column, 5, '.one end column');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].nodes[0].nodes[0].sourceIndex, 9, '.one sourceIndex');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].nodes[1].nodes[0].source.start.line, 3, '.two start line');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].nodes[1].nodes[0].source.start.column, 2, '.two start column');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].nodes[1].nodes[0].source.end.line, 3, '.two end line');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].nodes[1].nodes[0].source.end.column, 5, '.two end column');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].nodes[1].nodes[0].sourceIndex, 16, '.two sourceIndex');
|
||||
});
|
||||
17
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/__tests__/stripComments.js
generated
vendored
Executable file
17
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/__tests__/stripComments.js
generated
vendored
Executable file
|
|
@ -0,0 +1,17 @@
|
|||
"use strict";
|
||||
|
||||
var _ava = _interopRequireDefault(require("ava"));
|
||||
|
||||
var _stripComments = _interopRequireDefault(require("../../src/util/stripComments"));
|
||||
|
||||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
||||
|
||||
(0, _ava.default)("stripComments()", function (t) {
|
||||
t.deepEqual((0, _stripComments.default)("aaa/**/bbb"), "aaabbb");
|
||||
t.deepEqual((0, _stripComments.default)("aaa/*bbb"), "aaa");
|
||||
t.deepEqual((0, _stripComments.default)("aaa/*xxx*/bbb"), "aaabbb");
|
||||
t.deepEqual((0, _stripComments.default)("aaa/*/xxx/*/bbb"), "aaabbb");
|
||||
t.deepEqual((0, _stripComments.default)("aaa/*x*/bbb/**/"), "aaabbb");
|
||||
t.deepEqual((0, _stripComments.default)("/**/aaa/*x*/bbb/**/"), "aaabbb");
|
||||
t.deepEqual((0, _stripComments.default)("/**/"), "");
|
||||
});
|
||||
35
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/__tests__/tags.js
generated
vendored
Executable file
35
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/__tests__/tags.js
generated
vendored
Executable file
|
|
@ -0,0 +1,35 @@
|
|||
"use strict";
|
||||
|
||||
var _helpers = require("./util/helpers");
|
||||
|
||||
(0, _helpers.test)('tag selector', 'h1', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, 'h1');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'tag');
|
||||
});
|
||||
(0, _helpers.test)('multiple tag selectors', 'h1, h2', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, 'h1');
|
||||
t.deepEqual(tree.nodes[1].nodes[0].value, 'h2');
|
||||
});
|
||||
(0, _helpers.test)('extraneous non-combinating whitespace', ' h1 , h2 ', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, 'h1');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].spaces.before, ' ');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].spaces.after, ' ');
|
||||
t.deepEqual(tree.nodes[1].nodes[0].value, 'h2');
|
||||
t.deepEqual(tree.nodes[1].nodes[0].spaces.before, ' ');
|
||||
t.deepEqual(tree.nodes[1].nodes[0].spaces.after, ' ');
|
||||
});
|
||||
(0, _helpers.test)('tag with trailing comma', 'h1,', function (t, tree) {
|
||||
t.deepEqual(tree.trailingComma, true);
|
||||
});
|
||||
(0, _helpers.test)('tag with trailing slash', 'h1\\', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, 'h1\\');
|
||||
});
|
||||
(0, _helpers.test)('tag with attribute', 'label[for="email"]', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, 'label');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'tag');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].value, 'email');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].attribute, 'for');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].operator, '=');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].type, 'attribute');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].quoteMark, '"');
|
||||
});
|
||||
32
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/__tests__/universal.js
generated
vendored
Executable file
32
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/__tests__/universal.js
generated
vendored
Executable file
|
|
@ -0,0 +1,32 @@
|
|||
"use strict";
|
||||
|
||||
var _helpers = require("./util/helpers");
|
||||
|
||||
(0, _helpers.test)('universal selector', '*', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, '*');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'universal');
|
||||
});
|
||||
(0, _helpers.test)('lobotomized owl', '* + *', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'universal');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].type, 'combinator');
|
||||
t.deepEqual(tree.nodes[0].nodes[2].type, 'universal');
|
||||
});
|
||||
(0, _helpers.test)('extraneous non-combinating whitespace', ' * , * ', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, '*');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].spaces.before, ' ');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].spaces.after, ' ');
|
||||
t.deepEqual(tree.nodes[1].nodes[0].value, '*');
|
||||
t.deepEqual(tree.nodes[1].nodes[0].spaces.before, ' ');
|
||||
t.deepEqual(tree.nodes[1].nodes[0].spaces.after, ' ');
|
||||
});
|
||||
(0, _helpers.test)('qualified universal selector', '*[href] *:not(*.green)', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, '*');
|
||||
t.deepEqual(tree.nodes[0].nodes[3].value, '*');
|
||||
t.deepEqual(tree.nodes[0].nodes[4].nodes[0].nodes[0].value, '*');
|
||||
});
|
||||
(0, _helpers.test)('universal selector with pseudo', '*::--webkit-media-controls-play-button', function (t, tree) {
|
||||
t.deepEqual(tree.nodes[0].nodes[0].value, '*');
|
||||
t.deepEqual(tree.nodes[0].nodes[0].type, 'universal');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].value, '::--webkit-media-controls-play-button');
|
||||
t.deepEqual(tree.nodes[0].nodes[1].type, 'pseudo');
|
||||
});
|
||||
90
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/__tests__/util/helpers.js
generated
vendored
Executable file
90
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/__tests__/util/helpers.js
generated
vendored
Executable file
|
|
@ -0,0 +1,90 @@
|
|||
"use strict";
|
||||
|
||||
exports.__esModule = true;
|
||||
exports.test = test;
|
||||
exports.nodeVersionAtLeast = nodeVersionAtLeast;
|
||||
exports.nodeVersionBefore = nodeVersionBefore;
|
||||
exports.throws = exports.parse = void 0;
|
||||
|
||||
var _process = _interopRequireDefault(require("process"));
|
||||
|
||||
var _util = _interopRequireDefault(require("util"));
|
||||
|
||||
var _ava = _interopRequireDefault(require("ava"));
|
||||
|
||||
var _semver = _interopRequireDefault(require("semver"));
|
||||
|
||||
var _index = _interopRequireDefault(require("../../index"));
|
||||
|
||||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
||||
|
||||
var parse = function parse(input, transform) {
|
||||
return (0, _index.default)(transform).processSync(input);
|
||||
};
|
||||
|
||||
exports.parse = parse;
|
||||
|
||||
function test(spec, input, callback, only, disabled, serial) {
|
||||
var _this = this;
|
||||
|
||||
if (only === void 0) {
|
||||
only = false;
|
||||
}
|
||||
|
||||
if (disabled === void 0) {
|
||||
disabled = false;
|
||||
}
|
||||
|
||||
if (serial === void 0) {
|
||||
serial = false;
|
||||
}
|
||||
|
||||
var tester = only ? _ava.default.only : _ava.default;
|
||||
tester = disabled ? tester.skip : tester;
|
||||
tester = serial ? tester.serial : tester;
|
||||
|
||||
if (callback) {
|
||||
tester(spec + " (tree)", function (t) {
|
||||
var tree = (0, _index.default)().astSync(input);
|
||||
|
||||
var debug = _util.default.inspect(tree, false, null);
|
||||
|
||||
return callback.call(_this, t, tree, debug);
|
||||
});
|
||||
}
|
||||
|
||||
tester(spec + " (toString)", function (t) {
|
||||
var result = (0, _index.default)().processSync(input);
|
||||
t.deepEqual(result, input);
|
||||
});
|
||||
}
|
||||
|
||||
test.only = function (spec, input, callback) {
|
||||
return test(spec, input, callback, true);
|
||||
};
|
||||
|
||||
test.skip = function (spec, input, callback) {
|
||||
return test(spec, input, callback, false, true);
|
||||
};
|
||||
|
||||
test.serial = function (spec, input, callback) {
|
||||
return test(spec, input, callback, false, false, true);
|
||||
};
|
||||
|
||||
var throws = function throws(spec, input, validator) {
|
||||
(0, _ava.default)(spec + " (throws)", function (t) {
|
||||
t.throws(function () {
|
||||
return (0, _index.default)().processSync(input);
|
||||
}, validator || Error);
|
||||
});
|
||||
};
|
||||
|
||||
exports.throws = throws;
|
||||
|
||||
function nodeVersionAtLeast(version) {
|
||||
return _semver.default.gte(_process.default.versions.node, version);
|
||||
}
|
||||
|
||||
function nodeVersionBefore(version) {
|
||||
return _semver.default.lt(_process.default.versions.node, version);
|
||||
}
|
||||
22
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/index.js
generated
vendored
Executable file
22
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/index.js
generated
vendored
Executable file
|
|
@ -0,0 +1,22 @@
|
|||
"use strict";
|
||||
|
||||
exports.__esModule = true;
|
||||
exports.default = void 0;
|
||||
|
||||
var _processor = _interopRequireDefault(require("./processor"));
|
||||
|
||||
var selectors = _interopRequireWildcard(require("./selectors"));
|
||||
|
||||
function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = Object.defineProperty && Object.getOwnPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : {}; if (desc.get || desc.set) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } } newObj.default = obj; return newObj; } }
|
||||
|
||||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
||||
|
||||
var parser = function parser(processor) {
|
||||
return new _processor.default(processor);
|
||||
};
|
||||
|
||||
Object.assign(parser, selectors);
|
||||
delete parser.__esModule;
|
||||
var _default = parser;
|
||||
exports.default = _default;
|
||||
module.exports = exports.default;
|
||||
1223
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/parser.js
generated
vendored
Executable file
1223
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/parser.js
generated
vendored
Executable file
File diff suppressed because it is too large
Load diff
208
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/processor.js
generated
vendored
Executable file
208
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/processor.js
generated
vendored
Executable file
|
|
@ -0,0 +1,208 @@
|
|||
"use strict";
|
||||
|
||||
exports.__esModule = true;
|
||||
exports.default = void 0;
|
||||
|
||||
var _parser = _interopRequireDefault(require("./parser"));
|
||||
|
||||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
||||
|
||||
var Processor =
|
||||
/*#__PURE__*/
|
||||
function () {
|
||||
function Processor(func, options) {
|
||||
this.func = func || function noop() {};
|
||||
|
||||
this.funcRes = null;
|
||||
this.options = options;
|
||||
}
|
||||
|
||||
var _proto = Processor.prototype;
|
||||
|
||||
_proto._shouldUpdateSelector = function _shouldUpdateSelector(rule, options) {
|
||||
if (options === void 0) {
|
||||
options = {};
|
||||
}
|
||||
|
||||
var merged = Object.assign({}, this.options, options);
|
||||
|
||||
if (merged.updateSelector === false) {
|
||||
return false;
|
||||
} else {
|
||||
return typeof rule !== "string";
|
||||
}
|
||||
};
|
||||
|
||||
_proto._isLossy = function _isLossy(options) {
|
||||
if (options === void 0) {
|
||||
options = {};
|
||||
}
|
||||
|
||||
var merged = Object.assign({}, this.options, options);
|
||||
|
||||
if (merged.lossless === false) {
|
||||
return true;
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
};
|
||||
|
||||
_proto._root = function _root(rule, options) {
|
||||
if (options === void 0) {
|
||||
options = {};
|
||||
}
|
||||
|
||||
var parser = new _parser.default(rule, this._parseOptions(options));
|
||||
return parser.root;
|
||||
};
|
||||
|
||||
_proto._parseOptions = function _parseOptions(options) {
|
||||
return {
|
||||
lossy: this._isLossy(options)
|
||||
};
|
||||
};
|
||||
|
||||
_proto._run = function _run(rule, options) {
|
||||
var _this = this;
|
||||
|
||||
if (options === void 0) {
|
||||
options = {};
|
||||
}
|
||||
|
||||
return new Promise(function (resolve, reject) {
|
||||
try {
|
||||
var root = _this._root(rule, options);
|
||||
|
||||
Promise.resolve(_this.func(root)).then(function (transform) {
|
||||
var string = undefined;
|
||||
|
||||
if (_this._shouldUpdateSelector(rule, options)) {
|
||||
string = root.toString();
|
||||
rule.selector = string;
|
||||
}
|
||||
|
||||
return {
|
||||
transform: transform,
|
||||
root: root,
|
||||
string: string
|
||||
};
|
||||
}).then(resolve, reject);
|
||||
} catch (e) {
|
||||
reject(e);
|
||||
return;
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
_proto._runSync = function _runSync(rule, options) {
|
||||
if (options === void 0) {
|
||||
options = {};
|
||||
}
|
||||
|
||||
var root = this._root(rule, options);
|
||||
|
||||
var transform = this.func(root);
|
||||
|
||||
if (transform && typeof transform.then === "function") {
|
||||
throw new Error("Selector processor returned a promise to a synchronous call.");
|
||||
}
|
||||
|
||||
var string = undefined;
|
||||
|
||||
if (options.updateSelector && typeof rule !== "string") {
|
||||
string = root.toString();
|
||||
rule.selector = string;
|
||||
}
|
||||
|
||||
return {
|
||||
transform: transform,
|
||||
root: root,
|
||||
string: string
|
||||
};
|
||||
}
|
||||
/**
|
||||
* Process rule into a selector AST.
|
||||
*
|
||||
* @param rule {postcss.Rule | string} The css selector to be processed
|
||||
* @param options The options for processing
|
||||
* @returns {Promise<parser.Root>} The AST of the selector after processing it.
|
||||
*/
|
||||
;
|
||||
|
||||
_proto.ast = function ast(rule, options) {
|
||||
return this._run(rule, options).then(function (result) {
|
||||
return result.root;
|
||||
});
|
||||
}
|
||||
/**
|
||||
* Process rule into a selector AST synchronously.
|
||||
*
|
||||
* @param rule {postcss.Rule | string} The css selector to be processed
|
||||
* @param options The options for processing
|
||||
* @returns {parser.Root} The AST of the selector after processing it.
|
||||
*/
|
||||
;
|
||||
|
||||
_proto.astSync = function astSync(rule, options) {
|
||||
return this._runSync(rule, options).root;
|
||||
}
|
||||
/**
|
||||
* Process a selector into a transformed value asynchronously
|
||||
*
|
||||
* @param rule {postcss.Rule | string} The css selector to be processed
|
||||
* @param options The options for processing
|
||||
* @returns {Promise<any>} The value returned by the processor.
|
||||
*/
|
||||
;
|
||||
|
||||
_proto.transform = function transform(rule, options) {
|
||||
return this._run(rule, options).then(function (result) {
|
||||
return result.transform;
|
||||
});
|
||||
}
|
||||
/**
|
||||
* Process a selector into a transformed value synchronously.
|
||||
*
|
||||
* @param rule {postcss.Rule | string} The css selector to be processed
|
||||
* @param options The options for processing
|
||||
* @returns {any} The value returned by the processor.
|
||||
*/
|
||||
;
|
||||
|
||||
_proto.transformSync = function transformSync(rule, options) {
|
||||
return this._runSync(rule, options).transform;
|
||||
}
|
||||
/**
|
||||
* Process a selector into a new selector string asynchronously.
|
||||
*
|
||||
* @param rule {postcss.Rule | string} The css selector to be processed
|
||||
* @param options The options for processing
|
||||
* @returns {string} the selector after processing.
|
||||
*/
|
||||
;
|
||||
|
||||
_proto.process = function process(rule, options) {
|
||||
return this._run(rule, options).then(function (result) {
|
||||
return result.string || result.root.toString();
|
||||
});
|
||||
}
|
||||
/**
|
||||
* Process a selector into a new selector string synchronously.
|
||||
*
|
||||
* @param rule {postcss.Rule | string} The css selector to be processed
|
||||
* @param options The options for processing
|
||||
* @returns {string} the selector after processing.
|
||||
*/
|
||||
;
|
||||
|
||||
_proto.processSync = function processSync(rule, options) {
|
||||
var result = this._runSync(rule, options);
|
||||
|
||||
return result.string || result.root.toString();
|
||||
};
|
||||
|
||||
return Processor;
|
||||
}();
|
||||
|
||||
exports.default = Processor;
|
||||
module.exports = exports.default;
|
||||
516
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/selectors/attribute.js
generated
vendored
Executable file
516
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/selectors/attribute.js
generated
vendored
Executable file
|
|
@ -0,0 +1,516 @@
|
|||
"use strict";
|
||||
|
||||
exports.__esModule = true;
|
||||
exports.unescapeValue = unescapeValue;
|
||||
exports.default = void 0;
|
||||
|
||||
var _cssesc = _interopRequireDefault(require("cssesc"));
|
||||
|
||||
var _unesc = _interopRequireDefault(require("../util/unesc"));
|
||||
|
||||
var _namespace = _interopRequireDefault(require("./namespace"));
|
||||
|
||||
var _types = require("./types");
|
||||
|
||||
var _CSSESC_QUOTE_OPTIONS;
|
||||
|
||||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
||||
|
||||
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
||||
|
||||
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
|
||||
|
||||
function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; subClass.__proto__ = superClass; }
|
||||
|
||||
var _require = require("util"),
|
||||
deprecate = _require.deprecate;
|
||||
|
||||
var WRAPPED_IN_QUOTES = /^('|")(.*)\1$/;
|
||||
var warnOfDeprecatedValueAssignment = deprecate(function () {}, "Assigning an attribute a value containing characters that might need to be escaped is deprecated. " + "Call attribute.setValue() instead.");
|
||||
var warnOfDeprecatedQuotedAssignment = deprecate(function () {}, "Assigning attr.quoted is deprecated and has no effect. Assign to attr.quoteMark instead.");
|
||||
var warnOfDeprecatedConstructor = deprecate(function () {}, "Constructing an Attribute selector with a value without specifying quoteMark is deprecated. Note: The value should be unescaped now.");
|
||||
|
||||
function unescapeValue(value) {
|
||||
var deprecatedUsage = false;
|
||||
var quoteMark = null;
|
||||
var unescaped = value;
|
||||
var m = unescaped.match(WRAPPED_IN_QUOTES);
|
||||
|
||||
if (m) {
|
||||
quoteMark = m[1];
|
||||
unescaped = m[2];
|
||||
}
|
||||
|
||||
unescaped = (0, _unesc.default)(unescaped);
|
||||
|
||||
if (unescaped !== value) {
|
||||
deprecatedUsage = true;
|
||||
}
|
||||
|
||||
return {
|
||||
deprecatedUsage: deprecatedUsage,
|
||||
unescaped: unescaped,
|
||||
quoteMark: quoteMark
|
||||
};
|
||||
}
|
||||
|
||||
function handleDeprecatedContructorOpts(opts) {
|
||||
if (opts.quoteMark !== undefined) {
|
||||
return opts;
|
||||
}
|
||||
|
||||
if (opts.value === undefined) {
|
||||
return opts;
|
||||
}
|
||||
|
||||
warnOfDeprecatedConstructor();
|
||||
|
||||
var _unescapeValue = unescapeValue(opts.value),
|
||||
quoteMark = _unescapeValue.quoteMark,
|
||||
unescaped = _unescapeValue.unescaped;
|
||||
|
||||
if (!opts.raws) {
|
||||
opts.raws = {};
|
||||
}
|
||||
|
||||
if (opts.raws.value === undefined) {
|
||||
opts.raws.value = opts.value;
|
||||
}
|
||||
|
||||
opts.value = unescaped;
|
||||
opts.quoteMark = quoteMark;
|
||||
return opts;
|
||||
}
|
||||
|
||||
var Attribute =
|
||||
/*#__PURE__*/
|
||||
function (_Namespace) {
|
||||
_inheritsLoose(Attribute, _Namespace);
|
||||
|
||||
function Attribute(opts) {
|
||||
var _this;
|
||||
|
||||
if (opts === void 0) {
|
||||
opts = {};
|
||||
}
|
||||
|
||||
_this = _Namespace.call(this, handleDeprecatedContructorOpts(opts)) || this;
|
||||
_this.type = _types.ATTRIBUTE;
|
||||
_this.raws = _this.raws || {};
|
||||
Object.defineProperty(_this.raws, 'unquoted', {
|
||||
get: deprecate(function () {
|
||||
return _this.value;
|
||||
}, "attr.raws.unquoted is deprecated. Call attr.value instead."),
|
||||
set: deprecate(function () {
|
||||
return _this.value;
|
||||
}, "Setting attr.raws.unquoted is deprecated and has no effect. attr.value is unescaped by default now.")
|
||||
});
|
||||
_this._constructed = true;
|
||||
return _this;
|
||||
}
|
||||
/**
|
||||
* Returns the Attribute's value quoted such that it would be legal to use
|
||||
* in the value of a css file. The original value's quotation setting
|
||||
* used for stringification is left unchanged. See `setValue(value, options)`
|
||||
* if you want to control the quote settings of a new value for the attribute.
|
||||
*
|
||||
* You can also change the quotation used for the current value by setting quoteMark.
|
||||
*
|
||||
* Options:
|
||||
* * quoteMark {'"' | "'" | null} - Use this value to quote the value. If this
|
||||
* option is not set, the original value for quoteMark will be used. If
|
||||
* indeterminate, a double quote is used. The legal values are:
|
||||
* * `null` - the value will be unquoted and characters will be escaped as necessary.
|
||||
* * `'` - the value will be quoted with a single quote and single quotes are escaped.
|
||||
* * `"` - the value will be quoted with a double quote and double quotes are escaped.
|
||||
* * preferCurrentQuoteMark {boolean} - if true, prefer the source quote mark
|
||||
* over the quoteMark option value.
|
||||
* * smart {boolean} - if true, will select a quote mark based on the value
|
||||
* and the other options specified here. See the `smartQuoteMark()`
|
||||
* method.
|
||||
**/
|
||||
|
||||
|
||||
var _proto = Attribute.prototype;
|
||||
|
||||
_proto.getQuotedValue = function getQuotedValue(options) {
|
||||
if (options === void 0) {
|
||||
options = {};
|
||||
}
|
||||
|
||||
var quoteMark = this._determineQuoteMark(options);
|
||||
|
||||
var cssescopts = CSSESC_QUOTE_OPTIONS[quoteMark];
|
||||
var escaped = (0, _cssesc.default)(this._value, cssescopts);
|
||||
return escaped;
|
||||
};
|
||||
|
||||
_proto._determineQuoteMark = function _determineQuoteMark(options) {
|
||||
return options.smart ? this.smartQuoteMark(options) : this.preferredQuoteMark(options);
|
||||
}
|
||||
/**
|
||||
* Set the unescaped value with the specified quotation options. The value
|
||||
* provided must not include any wrapping quote marks -- those quotes will
|
||||
* be interpreted as part of the value and escaped accordingly.
|
||||
*/
|
||||
;
|
||||
|
||||
_proto.setValue = function setValue(value, options) {
|
||||
if (options === void 0) {
|
||||
options = {};
|
||||
}
|
||||
|
||||
this._value = value;
|
||||
this._quoteMark = this._determineQuoteMark(options);
|
||||
|
||||
this._syncRawValue();
|
||||
}
|
||||
/**
|
||||
* Intelligently select a quoteMark value based on the value's contents. If
|
||||
* the value is a legal CSS ident, it will not be quoted. Otherwise a quote
|
||||
* mark will be picked that minimizes the number of escapes.
|
||||
*
|
||||
* If there's no clear winner, the quote mark from these options is used,
|
||||
* then the source quote mark (this is inverted if `preferCurrentQuoteMark` is
|
||||
* true). If the quoteMark is unspecified, a double quote is used.
|
||||
*
|
||||
* @param options This takes the quoteMark and preferCurrentQuoteMark options
|
||||
* from the quoteValue method.
|
||||
*/
|
||||
;
|
||||
|
||||
_proto.smartQuoteMark = function smartQuoteMark(options) {
|
||||
var v = this.value;
|
||||
var numSingleQuotes = v.replace(/[^']/g, '').length;
|
||||
var numDoubleQuotes = v.replace(/[^"]/g, '').length;
|
||||
|
||||
if (numSingleQuotes + numDoubleQuotes === 0) {
|
||||
var escaped = (0, _cssesc.default)(v, {
|
||||
isIdentifier: true
|
||||
});
|
||||
|
||||
if (escaped === v) {
|
||||
return Attribute.NO_QUOTE;
|
||||
} else {
|
||||
var pref = this.preferredQuoteMark(options);
|
||||
|
||||
if (pref === Attribute.NO_QUOTE) {
|
||||
// pick a quote mark that isn't none and see if it's smaller
|
||||
var quote = this.quoteMark || options.quoteMark || Attribute.DOUBLE_QUOTE;
|
||||
var opts = CSSESC_QUOTE_OPTIONS[quote];
|
||||
var quoteValue = (0, _cssesc.default)(v, opts);
|
||||
|
||||
if (quoteValue.length < escaped.length) {
|
||||
return quote;
|
||||
}
|
||||
}
|
||||
|
||||
return pref;
|
||||
}
|
||||
} else if (numDoubleQuotes === numSingleQuotes) {
|
||||
return this.preferredQuoteMark(options);
|
||||
} else if (numDoubleQuotes < numSingleQuotes) {
|
||||
return Attribute.DOUBLE_QUOTE;
|
||||
} else {
|
||||
return Attribute.SINGLE_QUOTE;
|
||||
}
|
||||
}
|
||||
/**
|
||||
* Selects the preferred quote mark based on the options and the current quote mark value.
|
||||
* If you want the quote mark to depend on the attribute value, call `smartQuoteMark(opts)`
|
||||
* instead.
|
||||
*/
|
||||
;
|
||||
|
||||
_proto.preferredQuoteMark = function preferredQuoteMark(options) {
|
||||
var quoteMark = options.preferCurrentQuoteMark ? this.quoteMark : options.quoteMark;
|
||||
|
||||
if (quoteMark === undefined) {
|
||||
quoteMark = options.preferCurrentQuoteMark ? options.quoteMark : this.quoteMark;
|
||||
}
|
||||
|
||||
if (quoteMark === undefined) {
|
||||
quoteMark = Attribute.DOUBLE_QUOTE;
|
||||
}
|
||||
|
||||
return quoteMark;
|
||||
};
|
||||
|
||||
_proto._syncRawValue = function _syncRawValue() {
|
||||
var rawValue = (0, _cssesc.default)(this._value, CSSESC_QUOTE_OPTIONS[this.quoteMark]);
|
||||
|
||||
if (rawValue === this._value) {
|
||||
if (this.raws) {
|
||||
delete this.raws.value;
|
||||
}
|
||||
} else {
|
||||
this.raws.value = rawValue;
|
||||
}
|
||||
};
|
||||
|
||||
_proto._handleEscapes = function _handleEscapes(prop, value) {
|
||||
if (this._constructed) {
|
||||
var escaped = (0, _cssesc.default)(value, {
|
||||
isIdentifier: true
|
||||
});
|
||||
|
||||
if (escaped !== value) {
|
||||
this.raws[prop] = escaped;
|
||||
} else {
|
||||
delete this.raws[prop];
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
_proto._spacesFor = function _spacesFor(name) {
|
||||
var attrSpaces = {
|
||||
before: '',
|
||||
after: ''
|
||||
};
|
||||
var spaces = this.spaces[name] || {};
|
||||
var rawSpaces = this.raws.spaces && this.raws.spaces[name] || {};
|
||||
return Object.assign(attrSpaces, spaces, rawSpaces);
|
||||
};
|
||||
|
||||
_proto._stringFor = function _stringFor(name, spaceName, concat) {
|
||||
if (spaceName === void 0) {
|
||||
spaceName = name;
|
||||
}
|
||||
|
||||
if (concat === void 0) {
|
||||
concat = defaultAttrConcat;
|
||||
}
|
||||
|
||||
var attrSpaces = this._spacesFor(spaceName);
|
||||
|
||||
return concat(this.stringifyProperty(name), attrSpaces);
|
||||
}
|
||||
/**
|
||||
* returns the offset of the attribute part specified relative to the
|
||||
* start of the node of the output string.
|
||||
*
|
||||
* * "ns" - alias for "namespace"
|
||||
* * "namespace" - the namespace if it exists.
|
||||
* * "attribute" - the attribute name
|
||||
* * "attributeNS" - the start of the attribute or its namespace
|
||||
* * "operator" - the match operator of the attribute
|
||||
* * "value" - The value (string or identifier)
|
||||
* * "insensitive" - the case insensitivity flag;
|
||||
* @param part One of the possible values inside an attribute.
|
||||
* @returns -1 if the name is invalid or the value doesn't exist in this attribute.
|
||||
*/
|
||||
;
|
||||
|
||||
_proto.offsetOf = function offsetOf(name) {
|
||||
var count = 1;
|
||||
|
||||
var attributeSpaces = this._spacesFor("attribute");
|
||||
|
||||
count += attributeSpaces.before.length;
|
||||
|
||||
if (name === "namespace" || name === "ns") {
|
||||
return this.namespace ? count : -1;
|
||||
}
|
||||
|
||||
if (name === "attributeNS") {
|
||||
return count;
|
||||
}
|
||||
|
||||
count += this.namespaceString.length;
|
||||
|
||||
if (this.namespace) {
|
||||
count += 1;
|
||||
}
|
||||
|
||||
if (name === "attribute") {
|
||||
return count;
|
||||
}
|
||||
|
||||
count += this.stringifyProperty("attribute").length;
|
||||
count += attributeSpaces.after.length;
|
||||
|
||||
var operatorSpaces = this._spacesFor("operator");
|
||||
|
||||
count += operatorSpaces.before.length;
|
||||
var operator = this.stringifyProperty("operator");
|
||||
|
||||
if (name === "operator") {
|
||||
return operator ? count : -1;
|
||||
}
|
||||
|
||||
count += operator.length;
|
||||
count += operatorSpaces.after.length;
|
||||
|
||||
var valueSpaces = this._spacesFor("value");
|
||||
|
||||
count += valueSpaces.before.length;
|
||||
var value = this.stringifyProperty("value");
|
||||
|
||||
if (name === "value") {
|
||||
return value ? count : -1;
|
||||
}
|
||||
|
||||
count += value.length;
|
||||
count += valueSpaces.after.length;
|
||||
|
||||
var insensitiveSpaces = this._spacesFor("insensitive");
|
||||
|
||||
count += insensitiveSpaces.before.length;
|
||||
|
||||
if (name === "insensitive") {
|
||||
return this.insensitive ? count : -1;
|
||||
}
|
||||
|
||||
return -1;
|
||||
};
|
||||
|
||||
_proto.toString = function toString() {
|
||||
var _this2 = this;
|
||||
|
||||
var selector = [this.rawSpaceBefore, '['];
|
||||
selector.push(this._stringFor('qualifiedAttribute', 'attribute'));
|
||||
|
||||
if (this.operator && (this.value || this.value === '')) {
|
||||
selector.push(this._stringFor('operator'));
|
||||
selector.push(this._stringFor('value'));
|
||||
selector.push(this._stringFor('insensitiveFlag', 'insensitive', function (attrValue, attrSpaces) {
|
||||
if (attrValue.length > 0 && !_this2.quoted && attrSpaces.before.length === 0 && !(_this2.spaces.value && _this2.spaces.value.after)) {
|
||||
attrSpaces.before = " ";
|
||||
}
|
||||
|
||||
return defaultAttrConcat(attrValue, attrSpaces);
|
||||
}));
|
||||
}
|
||||
|
||||
selector.push(']');
|
||||
selector.push(this.rawSpaceAfter);
|
||||
return selector.join('');
|
||||
};
|
||||
|
||||
_createClass(Attribute, [{
|
||||
key: "quoted",
|
||||
get: function get() {
|
||||
var qm = this.quoteMark;
|
||||
return qm === "'" || qm === '"';
|
||||
},
|
||||
set: function set(value) {
|
||||
warnOfDeprecatedQuotedAssignment();
|
||||
}
|
||||
/**
|
||||
* returns a single (`'`) or double (`"`) quote character if the value is quoted.
|
||||
* returns `null` if the value is not quoted.
|
||||
* returns `undefined` if the quotation state is unknown (this can happen when
|
||||
* the attribute is constructed without specifying a quote mark.)
|
||||
*/
|
||||
|
||||
}, {
|
||||
key: "quoteMark",
|
||||
get: function get() {
|
||||
return this._quoteMark;
|
||||
}
|
||||
/**
|
||||
* Set the quote mark to be used by this attribute's value.
|
||||
* If the quote mark changes, the raw (escaped) value at `attr.raws.value` of the attribute
|
||||
* value is updated accordingly.
|
||||
*
|
||||
* @param {"'" | '"' | null} quoteMark The quote mark or `null` if the value should be unquoted.
|
||||
*/
|
||||
,
|
||||
set: function set(quoteMark) {
|
||||
if (!this._constructed) {
|
||||
this._quoteMark = quoteMark;
|
||||
return;
|
||||
}
|
||||
|
||||
if (this._quoteMark !== quoteMark) {
|
||||
this._quoteMark = quoteMark;
|
||||
|
||||
this._syncRawValue();
|
||||
}
|
||||
}
|
||||
}, {
|
||||
key: "qualifiedAttribute",
|
||||
get: function get() {
|
||||
return this.qualifiedName(this.raws.attribute || this.attribute);
|
||||
}
|
||||
}, {
|
||||
key: "insensitiveFlag",
|
||||
get: function get() {
|
||||
return this.insensitive ? 'i' : '';
|
||||
}
|
||||
}, {
|
||||
key: "value",
|
||||
get: function get() {
|
||||
return this._value;
|
||||
}
|
||||
/**
|
||||
* Before 3.0, the value had to be set to an escaped value including any wrapped
|
||||
* quote marks. In 3.0, the semantics of `Attribute.value` changed so that the value
|
||||
* is unescaped during parsing and any quote marks are removed.
|
||||
*
|
||||
* Because the ambiguity of this semantic change, if you set `attr.value = newValue`,
|
||||
* a deprecation warning is raised when the new value contains any characters that would
|
||||
* require escaping (including if it contains wrapped quotes).
|
||||
*
|
||||
* Instead, you should call `attr.setValue(newValue, opts)` and pass options that describe
|
||||
* how the new value is quoted.
|
||||
*/
|
||||
,
|
||||
set: function set(v) {
|
||||
if (this._constructed) {
|
||||
var _unescapeValue2 = unescapeValue(v),
|
||||
deprecatedUsage = _unescapeValue2.deprecatedUsage,
|
||||
unescaped = _unescapeValue2.unescaped,
|
||||
quoteMark = _unescapeValue2.quoteMark;
|
||||
|
||||
if (deprecatedUsage) {
|
||||
warnOfDeprecatedValueAssignment();
|
||||
}
|
||||
|
||||
if (unescaped === this._value && quoteMark === this._quoteMark) {
|
||||
return;
|
||||
}
|
||||
|
||||
this._value = unescaped;
|
||||
this._quoteMark = quoteMark;
|
||||
|
||||
this._syncRawValue();
|
||||
} else {
|
||||
this._value = v;
|
||||
}
|
||||
}
|
||||
}, {
|
||||
key: "attribute",
|
||||
get: function get() {
|
||||
return this._attribute;
|
||||
},
|
||||
set: function set(name) {
|
||||
this._handleEscapes("attribute", name);
|
||||
|
||||
this._attribute = name;
|
||||
}
|
||||
}]);
|
||||
|
||||
return Attribute;
|
||||
}(_namespace.default);
|
||||
|
||||
exports.default = Attribute;
|
||||
Attribute.NO_QUOTE = null;
|
||||
Attribute.SINGLE_QUOTE = "'";
|
||||
Attribute.DOUBLE_QUOTE = '"';
|
||||
var CSSESC_QUOTE_OPTIONS = (_CSSESC_QUOTE_OPTIONS = {
|
||||
"'": {
|
||||
quotes: 'single',
|
||||
wrap: true
|
||||
},
|
||||
'"': {
|
||||
quotes: 'double',
|
||||
wrap: true
|
||||
}
|
||||
}, _CSSESC_QUOTE_OPTIONS[null] = {
|
||||
isIdentifier: true
|
||||
}, _CSSESC_QUOTE_OPTIONS);
|
||||
|
||||
function defaultAttrConcat(attrValue, attrSpaces) {
|
||||
return "" + attrSpaces.before + attrValue + attrSpaces.after;
|
||||
}
|
||||
69
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/selectors/className.js
generated
vendored
Executable file
69
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/selectors/className.js
generated
vendored
Executable file
|
|
@ -0,0 +1,69 @@
|
|||
"use strict";
|
||||
|
||||
exports.__esModule = true;
|
||||
exports.default = void 0;
|
||||
|
||||
var _cssesc = _interopRequireDefault(require("cssesc"));
|
||||
|
||||
var _util = require("../util");
|
||||
|
||||
var _node = _interopRequireDefault(require("./node"));
|
||||
|
||||
var _types = require("./types");
|
||||
|
||||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
||||
|
||||
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
||||
|
||||
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
|
||||
|
||||
function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; subClass.__proto__ = superClass; }
|
||||
|
||||
var ClassName =
|
||||
/*#__PURE__*/
|
||||
function (_Node) {
|
||||
_inheritsLoose(ClassName, _Node);
|
||||
|
||||
function ClassName(opts) {
|
||||
var _this;
|
||||
|
||||
_this = _Node.call(this, opts) || this;
|
||||
_this.type = _types.CLASS;
|
||||
_this._constructed = true;
|
||||
return _this;
|
||||
}
|
||||
|
||||
var _proto = ClassName.prototype;
|
||||
|
||||
_proto.toString = function toString() {
|
||||
return [this.rawSpaceBefore, String('.' + this.stringifyProperty("value")), this.rawSpaceAfter].join('');
|
||||
};
|
||||
|
||||
_createClass(ClassName, [{
|
||||
key: "value",
|
||||
set: function set(v) {
|
||||
if (this._constructed) {
|
||||
var escaped = (0, _cssesc.default)(v, {
|
||||
isIdentifier: true
|
||||
});
|
||||
|
||||
if (escaped !== v) {
|
||||
(0, _util.ensureObject)(this, "raws");
|
||||
this.raws.value = escaped;
|
||||
} else if (this.raws) {
|
||||
delete this.raws.value;
|
||||
}
|
||||
}
|
||||
|
||||
this._value = v;
|
||||
},
|
||||
get: function get() {
|
||||
return this._value;
|
||||
}
|
||||
}]);
|
||||
|
||||
return ClassName;
|
||||
}(_node.default);
|
||||
|
||||
exports.default = ClassName;
|
||||
module.exports = exports.default;
|
||||
31
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/selectors/combinator.js
generated
vendored
Executable file
31
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/selectors/combinator.js
generated
vendored
Executable file
|
|
@ -0,0 +1,31 @@
|
|||
"use strict";
|
||||
|
||||
exports.__esModule = true;
|
||||
exports.default = void 0;
|
||||
|
||||
var _node = _interopRequireDefault(require("./node"));
|
||||
|
||||
var _types = require("./types");
|
||||
|
||||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
||||
|
||||
function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; subClass.__proto__ = superClass; }
|
||||
|
||||
var Combinator =
|
||||
/*#__PURE__*/
|
||||
function (_Node) {
|
||||
_inheritsLoose(Combinator, _Node);
|
||||
|
||||
function Combinator(opts) {
|
||||
var _this;
|
||||
|
||||
_this = _Node.call(this, opts) || this;
|
||||
_this.type = _types.COMBINATOR;
|
||||
return _this;
|
||||
}
|
||||
|
||||
return Combinator;
|
||||
}(_node.default);
|
||||
|
||||
exports.default = Combinator;
|
||||
module.exports = exports.default;
|
||||
31
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/selectors/comment.js
generated
vendored
Executable file
31
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/selectors/comment.js
generated
vendored
Executable file
|
|
@ -0,0 +1,31 @@
|
|||
"use strict";
|
||||
|
||||
exports.__esModule = true;
|
||||
exports.default = void 0;
|
||||
|
||||
var _node = _interopRequireDefault(require("./node"));
|
||||
|
||||
var _types = require("./types");
|
||||
|
||||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
||||
|
||||
function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; subClass.__proto__ = superClass; }
|
||||
|
||||
var Comment =
|
||||
/*#__PURE__*/
|
||||
function (_Node) {
|
||||
_inheritsLoose(Comment, _Node);
|
||||
|
||||
function Comment(opts) {
|
||||
var _this;
|
||||
|
||||
_this = _Node.call(this, opts) || this;
|
||||
_this.type = _types.COMMENT;
|
||||
return _this;
|
||||
}
|
||||
|
||||
return Comment;
|
||||
}(_node.default);
|
||||
|
||||
exports.default = Comment;
|
||||
module.exports = exports.default;
|
||||
102
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/selectors/constructors.js
generated
vendored
Executable file
102
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/selectors/constructors.js
generated
vendored
Executable file
|
|
@ -0,0 +1,102 @@
|
|||
"use strict";
|
||||
|
||||
exports.__esModule = true;
|
||||
exports.universal = exports.tag = exports.string = exports.selector = exports.root = exports.pseudo = exports.nesting = exports.id = exports.comment = exports.combinator = exports.className = exports.attribute = void 0;
|
||||
|
||||
var _attribute = _interopRequireDefault(require("./attribute"));
|
||||
|
||||
var _className = _interopRequireDefault(require("./className"));
|
||||
|
||||
var _combinator = _interopRequireDefault(require("./combinator"));
|
||||
|
||||
var _comment = _interopRequireDefault(require("./comment"));
|
||||
|
||||
var _id = _interopRequireDefault(require("./id"));
|
||||
|
||||
var _nesting = _interopRequireDefault(require("./nesting"));
|
||||
|
||||
var _pseudo = _interopRequireDefault(require("./pseudo"));
|
||||
|
||||
var _root = _interopRequireDefault(require("./root"));
|
||||
|
||||
var _selector = _interopRequireDefault(require("./selector"));
|
||||
|
||||
var _string = _interopRequireDefault(require("./string"));
|
||||
|
||||
var _tag = _interopRequireDefault(require("./tag"));
|
||||
|
||||
var _universal = _interopRequireDefault(require("./universal"));
|
||||
|
||||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
||||
|
||||
var attribute = function attribute(opts) {
|
||||
return new _attribute.default(opts);
|
||||
};
|
||||
|
||||
exports.attribute = attribute;
|
||||
|
||||
var className = function className(opts) {
|
||||
return new _className.default(opts);
|
||||
};
|
||||
|
||||
exports.className = className;
|
||||
|
||||
var combinator = function combinator(opts) {
|
||||
return new _combinator.default(opts);
|
||||
};
|
||||
|
||||
exports.combinator = combinator;
|
||||
|
||||
var comment = function comment(opts) {
|
||||
return new _comment.default(opts);
|
||||
};
|
||||
|
||||
exports.comment = comment;
|
||||
|
||||
var id = function id(opts) {
|
||||
return new _id.default(opts);
|
||||
};
|
||||
|
||||
exports.id = id;
|
||||
|
||||
var nesting = function nesting(opts) {
|
||||
return new _nesting.default(opts);
|
||||
};
|
||||
|
||||
exports.nesting = nesting;
|
||||
|
||||
var pseudo = function pseudo(opts) {
|
||||
return new _pseudo.default(opts);
|
||||
};
|
||||
|
||||
exports.pseudo = pseudo;
|
||||
|
||||
var root = function root(opts) {
|
||||
return new _root.default(opts);
|
||||
};
|
||||
|
||||
exports.root = root;
|
||||
|
||||
var selector = function selector(opts) {
|
||||
return new _selector.default(opts);
|
||||
};
|
||||
|
||||
exports.selector = selector;
|
||||
|
||||
var string = function string(opts) {
|
||||
return new _string.default(opts);
|
||||
};
|
||||
|
||||
exports.string = string;
|
||||
|
||||
var tag = function tag(opts) {
|
||||
return new _tag.default(opts);
|
||||
};
|
||||
|
||||
exports.tag = tag;
|
||||
|
||||
var universal = function universal(opts) {
|
||||
return new _universal.default(opts);
|
||||
};
|
||||
|
||||
exports.universal = universal;
|
||||
398
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/selectors/container.js
generated
vendored
Executable file
398
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/selectors/container.js
generated
vendored
Executable file
|
|
@ -0,0 +1,398 @@
|
|||
"use strict";
|
||||
|
||||
exports.__esModule = true;
|
||||
exports.default = void 0;
|
||||
|
||||
var _node = _interopRequireDefault(require("./node"));
|
||||
|
||||
var types = _interopRequireWildcard(require("./types"));
|
||||
|
||||
function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = Object.defineProperty && Object.getOwnPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : {}; if (desc.get || desc.set) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } } newObj.default = obj; return newObj; } }
|
||||
|
||||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
||||
|
||||
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
||||
|
||||
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
|
||||
|
||||
function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; subClass.__proto__ = superClass; }
|
||||
|
||||
var Container =
|
||||
/*#__PURE__*/
|
||||
function (_Node) {
|
||||
_inheritsLoose(Container, _Node);
|
||||
|
||||
function Container(opts) {
|
||||
var _this;
|
||||
|
||||
_this = _Node.call(this, opts) || this;
|
||||
|
||||
if (!_this.nodes) {
|
||||
_this.nodes = [];
|
||||
}
|
||||
|
||||
return _this;
|
||||
}
|
||||
|
||||
var _proto = Container.prototype;
|
||||
|
||||
_proto.append = function append(selector) {
|
||||
selector.parent = this;
|
||||
this.nodes.push(selector);
|
||||
return this;
|
||||
};
|
||||
|
||||
_proto.prepend = function prepend(selector) {
|
||||
selector.parent = this;
|
||||
this.nodes.unshift(selector);
|
||||
return this;
|
||||
};
|
||||
|
||||
_proto.at = function at(index) {
|
||||
return this.nodes[index];
|
||||
};
|
||||
|
||||
_proto.index = function index(child) {
|
||||
if (typeof child === 'number') {
|
||||
return child;
|
||||
}
|
||||
|
||||
return this.nodes.indexOf(child);
|
||||
};
|
||||
|
||||
_proto.removeChild = function removeChild(child) {
|
||||
child = this.index(child);
|
||||
this.at(child).parent = undefined;
|
||||
this.nodes.splice(child, 1);
|
||||
var index;
|
||||
|
||||
for (var id in this.indexes) {
|
||||
index = this.indexes[id];
|
||||
|
||||
if (index >= child) {
|
||||
this.indexes[id] = index - 1;
|
||||
}
|
||||
}
|
||||
|
||||
return this;
|
||||
};
|
||||
|
||||
_proto.removeAll = function removeAll() {
|
||||
for (var _iterator = this.nodes, _isArray = Array.isArray(_iterator), _i = 0, _iterator = _isArray ? _iterator : _iterator[Symbol.iterator]();;) {
|
||||
var _ref;
|
||||
|
||||
if (_isArray) {
|
||||
if (_i >= _iterator.length) break;
|
||||
_ref = _iterator[_i++];
|
||||
} else {
|
||||
_i = _iterator.next();
|
||||
if (_i.done) break;
|
||||
_ref = _i.value;
|
||||
}
|
||||
|
||||
var node = _ref;
|
||||
node.parent = undefined;
|
||||
}
|
||||
|
||||
this.nodes = [];
|
||||
return this;
|
||||
};
|
||||
|
||||
_proto.empty = function empty() {
|
||||
return this.removeAll();
|
||||
};
|
||||
|
||||
_proto.insertAfter = function insertAfter(oldNode, newNode) {
|
||||
newNode.parent = this;
|
||||
var oldIndex = this.index(oldNode);
|
||||
this.nodes.splice(oldIndex + 1, 0, newNode);
|
||||
newNode.parent = this;
|
||||
var index;
|
||||
|
||||
for (var id in this.indexes) {
|
||||
index = this.indexes[id];
|
||||
|
||||
if (oldIndex <= index) {
|
||||
this.indexes[id] = index + 1;
|
||||
}
|
||||
}
|
||||
|
||||
return this;
|
||||
};
|
||||
|
||||
_proto.insertBefore = function insertBefore(oldNode, newNode) {
|
||||
newNode.parent = this;
|
||||
var oldIndex = this.index(oldNode);
|
||||
this.nodes.splice(oldIndex, 0, newNode);
|
||||
newNode.parent = this;
|
||||
var index;
|
||||
|
||||
for (var id in this.indexes) {
|
||||
index = this.indexes[id];
|
||||
|
||||
if (index <= oldIndex) {
|
||||
this.indexes[id] = index + 1;
|
||||
}
|
||||
}
|
||||
|
||||
return this;
|
||||
};
|
||||
|
||||
_proto._findChildAtPosition = function _findChildAtPosition(line, col) {
|
||||
var found = undefined;
|
||||
this.each(function (node) {
|
||||
if (node.atPosition) {
|
||||
var foundChild = node.atPosition(line, col);
|
||||
|
||||
if (foundChild) {
|
||||
found = foundChild;
|
||||
return false;
|
||||
}
|
||||
} else if (node.isAtPosition(line, col)) {
|
||||
found = node;
|
||||
return false;
|
||||
}
|
||||
});
|
||||
return found;
|
||||
}
|
||||
/**
|
||||
* Return the most specific node at the line and column number given.
|
||||
* The source location is based on the original parsed location, locations aren't
|
||||
* updated as selector nodes are mutated.
|
||||
*
|
||||
* Note that this location is relative to the location of the first character
|
||||
* of the selector, and not the location of the selector in the overall document
|
||||
* when used in conjunction with postcss.
|
||||
*
|
||||
* If not found, returns undefined.
|
||||
* @param {number} line The line number of the node to find. (1-based index)
|
||||
* @param {number} col The column number of the node to find. (1-based index)
|
||||
*/
|
||||
;
|
||||
|
||||
_proto.atPosition = function atPosition(line, col) {
|
||||
if (this.isAtPosition(line, col)) {
|
||||
return this._findChildAtPosition(line, col) || this;
|
||||
} else {
|
||||
return undefined;
|
||||
}
|
||||
};
|
||||
|
||||
_proto._inferEndPosition = function _inferEndPosition() {
|
||||
if (this.last && this.last.source && this.last.source.end) {
|
||||
this.source = this.source || {};
|
||||
this.source.end = this.source.end || {};
|
||||
Object.assign(this.source.end, this.last.source.end);
|
||||
}
|
||||
};
|
||||
|
||||
_proto.each = function each(callback) {
|
||||
if (!this.lastEach) {
|
||||
this.lastEach = 0;
|
||||
}
|
||||
|
||||
if (!this.indexes) {
|
||||
this.indexes = {};
|
||||
}
|
||||
|
||||
this.lastEach++;
|
||||
var id = this.lastEach;
|
||||
this.indexes[id] = 0;
|
||||
|
||||
if (!this.length) {
|
||||
return undefined;
|
||||
}
|
||||
|
||||
var index, result;
|
||||
|
||||
while (this.indexes[id] < this.length) {
|
||||
index = this.indexes[id];
|
||||
result = callback(this.at(index), index);
|
||||
|
||||
if (result === false) {
|
||||
break;
|
||||
}
|
||||
|
||||
this.indexes[id] += 1;
|
||||
}
|
||||
|
||||
delete this.indexes[id];
|
||||
|
||||
if (result === false) {
|
||||
return false;
|
||||
}
|
||||
};
|
||||
|
||||
_proto.walk = function walk(callback) {
|
||||
return this.each(function (node, i) {
|
||||
var result = callback(node, i);
|
||||
|
||||
if (result !== false && node.length) {
|
||||
result = node.walk(callback);
|
||||
}
|
||||
|
||||
if (result === false) {
|
||||
return false;
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
_proto.walkAttributes = function walkAttributes(callback) {
|
||||
var _this2 = this;
|
||||
|
||||
return this.walk(function (selector) {
|
||||
if (selector.type === types.ATTRIBUTE) {
|
||||
return callback.call(_this2, selector);
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
_proto.walkClasses = function walkClasses(callback) {
|
||||
var _this3 = this;
|
||||
|
||||
return this.walk(function (selector) {
|
||||
if (selector.type === types.CLASS) {
|
||||
return callback.call(_this3, selector);
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
_proto.walkCombinators = function walkCombinators(callback) {
|
||||
var _this4 = this;
|
||||
|
||||
return this.walk(function (selector) {
|
||||
if (selector.type === types.COMBINATOR) {
|
||||
return callback.call(_this4, selector);
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
_proto.walkComments = function walkComments(callback) {
|
||||
var _this5 = this;
|
||||
|
||||
return this.walk(function (selector) {
|
||||
if (selector.type === types.COMMENT) {
|
||||
return callback.call(_this5, selector);
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
_proto.walkIds = function walkIds(callback) {
|
||||
var _this6 = this;
|
||||
|
||||
return this.walk(function (selector) {
|
||||
if (selector.type === types.ID) {
|
||||
return callback.call(_this6, selector);
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
_proto.walkNesting = function walkNesting(callback) {
|
||||
var _this7 = this;
|
||||
|
||||
return this.walk(function (selector) {
|
||||
if (selector.type === types.NESTING) {
|
||||
return callback.call(_this7, selector);
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
_proto.walkPseudos = function walkPseudos(callback) {
|
||||
var _this8 = this;
|
||||
|
||||
return this.walk(function (selector) {
|
||||
if (selector.type === types.PSEUDO) {
|
||||
return callback.call(_this8, selector);
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
_proto.walkTags = function walkTags(callback) {
|
||||
var _this9 = this;
|
||||
|
||||
return this.walk(function (selector) {
|
||||
if (selector.type === types.TAG) {
|
||||
return callback.call(_this9, selector);
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
_proto.walkUniversals = function walkUniversals(callback) {
|
||||
var _this10 = this;
|
||||
|
||||
return this.walk(function (selector) {
|
||||
if (selector.type === types.UNIVERSAL) {
|
||||
return callback.call(_this10, selector);
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
_proto.split = function split(callback) {
|
||||
var _this11 = this;
|
||||
|
||||
var current = [];
|
||||
return this.reduce(function (memo, node, index) {
|
||||
var split = callback.call(_this11, node);
|
||||
current.push(node);
|
||||
|
||||
if (split) {
|
||||
memo.push(current);
|
||||
current = [];
|
||||
} else if (index === _this11.length - 1) {
|
||||
memo.push(current);
|
||||
}
|
||||
|
||||
return memo;
|
||||
}, []);
|
||||
};
|
||||
|
||||
_proto.map = function map(callback) {
|
||||
return this.nodes.map(callback);
|
||||
};
|
||||
|
||||
_proto.reduce = function reduce(callback, memo) {
|
||||
return this.nodes.reduce(callback, memo);
|
||||
};
|
||||
|
||||
_proto.every = function every(callback) {
|
||||
return this.nodes.every(callback);
|
||||
};
|
||||
|
||||
_proto.some = function some(callback) {
|
||||
return this.nodes.some(callback);
|
||||
};
|
||||
|
||||
_proto.filter = function filter(callback) {
|
||||
return this.nodes.filter(callback);
|
||||
};
|
||||
|
||||
_proto.sort = function sort(callback) {
|
||||
return this.nodes.sort(callback);
|
||||
};
|
||||
|
||||
_proto.toString = function toString() {
|
||||
return this.map(String).join('');
|
||||
};
|
||||
|
||||
_createClass(Container, [{
|
||||
key: "first",
|
||||
get: function get() {
|
||||
return this.at(0);
|
||||
}
|
||||
}, {
|
||||
key: "last",
|
||||
get: function get() {
|
||||
return this.at(this.length - 1);
|
||||
}
|
||||
}, {
|
||||
key: "length",
|
||||
get: function get() {
|
||||
return this.nodes.length;
|
||||
}
|
||||
}]);
|
||||
|
||||
return Container;
|
||||
}(_node.default);
|
||||
|
||||
exports.default = Container;
|
||||
module.exports = exports.default;
|
||||
64
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/selectors/guards.js
generated
vendored
Executable file
64
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/selectors/guards.js
generated
vendored
Executable file
|
|
@ -0,0 +1,64 @@
|
|||
"use strict";
|
||||
|
||||
exports.__esModule = true;
|
||||
exports.isNode = isNode;
|
||||
exports.isPseudoElement = isPseudoElement;
|
||||
exports.isPseudoClass = isPseudoClass;
|
||||
exports.isContainer = isContainer;
|
||||
exports.isNamespace = isNamespace;
|
||||
exports.isUniversal = exports.isTag = exports.isString = exports.isSelector = exports.isRoot = exports.isPseudo = exports.isNesting = exports.isIdentifier = exports.isComment = exports.isCombinator = exports.isClassName = exports.isAttribute = void 0;
|
||||
|
||||
var _types = require("./types");
|
||||
|
||||
var _IS_TYPE;
|
||||
|
||||
var IS_TYPE = (_IS_TYPE = {}, _IS_TYPE[_types.ATTRIBUTE] = true, _IS_TYPE[_types.CLASS] = true, _IS_TYPE[_types.COMBINATOR] = true, _IS_TYPE[_types.COMMENT] = true, _IS_TYPE[_types.ID] = true, _IS_TYPE[_types.NESTING] = true, _IS_TYPE[_types.PSEUDO] = true, _IS_TYPE[_types.ROOT] = true, _IS_TYPE[_types.SELECTOR] = true, _IS_TYPE[_types.STRING] = true, _IS_TYPE[_types.TAG] = true, _IS_TYPE[_types.UNIVERSAL] = true, _IS_TYPE);
|
||||
|
||||
function isNode(node) {
|
||||
return typeof node === "object" && IS_TYPE[node.type];
|
||||
}
|
||||
|
||||
function isNodeType(type, node) {
|
||||
return isNode(node) && node.type === type;
|
||||
}
|
||||
|
||||
var isAttribute = isNodeType.bind(null, _types.ATTRIBUTE);
|
||||
exports.isAttribute = isAttribute;
|
||||
var isClassName = isNodeType.bind(null, _types.CLASS);
|
||||
exports.isClassName = isClassName;
|
||||
var isCombinator = isNodeType.bind(null, _types.COMBINATOR);
|
||||
exports.isCombinator = isCombinator;
|
||||
var isComment = isNodeType.bind(null, _types.COMMENT);
|
||||
exports.isComment = isComment;
|
||||
var isIdentifier = isNodeType.bind(null, _types.ID);
|
||||
exports.isIdentifier = isIdentifier;
|
||||
var isNesting = isNodeType.bind(null, _types.NESTING);
|
||||
exports.isNesting = isNesting;
|
||||
var isPseudo = isNodeType.bind(null, _types.PSEUDO);
|
||||
exports.isPseudo = isPseudo;
|
||||
var isRoot = isNodeType.bind(null, _types.ROOT);
|
||||
exports.isRoot = isRoot;
|
||||
var isSelector = isNodeType.bind(null, _types.SELECTOR);
|
||||
exports.isSelector = isSelector;
|
||||
var isString = isNodeType.bind(null, _types.STRING);
|
||||
exports.isString = isString;
|
||||
var isTag = isNodeType.bind(null, _types.TAG);
|
||||
exports.isTag = isTag;
|
||||
var isUniversal = isNodeType.bind(null, _types.UNIVERSAL);
|
||||
exports.isUniversal = isUniversal;
|
||||
|
||||
function isPseudoElement(node) {
|
||||
return isPseudo(node) && node.value && (node.value.startsWith("::") || node.value === ":before" || node.value === ":after");
|
||||
}
|
||||
|
||||
function isPseudoClass(node) {
|
||||
return isPseudo(node) && !isPseudoElement(node);
|
||||
}
|
||||
|
||||
function isContainer(node) {
|
||||
return !!(isNode(node) && node.walk);
|
||||
}
|
||||
|
||||
function isNamespace(node) {
|
||||
return isAttribute(node) || isTag(node);
|
||||
}
|
||||
37
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/selectors/id.js
generated
vendored
Executable file
37
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/selectors/id.js
generated
vendored
Executable file
|
|
@ -0,0 +1,37 @@
|
|||
"use strict";
|
||||
|
||||
exports.__esModule = true;
|
||||
exports.default = void 0;
|
||||
|
||||
var _node = _interopRequireDefault(require("./node"));
|
||||
|
||||
var _types = require("./types");
|
||||
|
||||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
||||
|
||||
function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; subClass.__proto__ = superClass; }
|
||||
|
||||
var ID =
|
||||
/*#__PURE__*/
|
||||
function (_Node) {
|
||||
_inheritsLoose(ID, _Node);
|
||||
|
||||
function ID(opts) {
|
||||
var _this;
|
||||
|
||||
_this = _Node.call(this, opts) || this;
|
||||
_this.type = _types.ID;
|
||||
return _this;
|
||||
}
|
||||
|
||||
var _proto = ID.prototype;
|
||||
|
||||
_proto.toString = function toString() {
|
||||
return [this.rawSpaceBefore, String('#' + this.stringifyProperty("value")), this.rawSpaceAfter].join('');
|
||||
};
|
||||
|
||||
return ID;
|
||||
}(_node.default);
|
||||
|
||||
exports.default = ID;
|
||||
module.exports = exports.default;
|
||||
24
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/selectors/index.js
generated
vendored
Executable file
24
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/selectors/index.js
generated
vendored
Executable file
|
|
@ -0,0 +1,24 @@
|
|||
"use strict";
|
||||
|
||||
exports.__esModule = true;
|
||||
|
||||
var _types = require("./types");
|
||||
|
||||
Object.keys(_types).forEach(function (key) {
|
||||
if (key === "default" || key === "__esModule") return;
|
||||
exports[key] = _types[key];
|
||||
});
|
||||
|
||||
var _constructors = require("./constructors");
|
||||
|
||||
Object.keys(_constructors).forEach(function (key) {
|
||||
if (key === "default" || key === "__esModule") return;
|
||||
exports[key] = _constructors[key];
|
||||
});
|
||||
|
||||
var _guards = require("./guards");
|
||||
|
||||
Object.keys(_guards).forEach(function (key) {
|
||||
if (key === "default" || key === "__esModule") return;
|
||||
exports[key] = _guards[key];
|
||||
});
|
||||
101
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/selectors/namespace.js
generated
vendored
Executable file
101
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/selectors/namespace.js
generated
vendored
Executable file
|
|
@ -0,0 +1,101 @@
|
|||
"use strict";
|
||||
|
||||
exports.__esModule = true;
|
||||
exports.default = void 0;
|
||||
|
||||
var _cssesc = _interopRequireDefault(require("cssesc"));
|
||||
|
||||
var _util = require("../util");
|
||||
|
||||
var _node = _interopRequireDefault(require("./node"));
|
||||
|
||||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
||||
|
||||
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
||||
|
||||
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
|
||||
|
||||
function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; subClass.__proto__ = superClass; }
|
||||
|
||||
var Namespace =
|
||||
/*#__PURE__*/
|
||||
function (_Node) {
|
||||
_inheritsLoose(Namespace, _Node);
|
||||
|
||||
function Namespace() {
|
||||
return _Node.apply(this, arguments) || this;
|
||||
}
|
||||
|
||||
var _proto = Namespace.prototype;
|
||||
|
||||
_proto.qualifiedName = function qualifiedName(value) {
|
||||
if (this.namespace) {
|
||||
return this.namespaceString + "|" + value;
|
||||
} else {
|
||||
return value;
|
||||
}
|
||||
};
|
||||
|
||||
_proto.toString = function toString() {
|
||||
return [this.rawSpaceBefore, this.qualifiedName(this.stringifyProperty("value")), this.rawSpaceAfter].join('');
|
||||
};
|
||||
|
||||
_createClass(Namespace, [{
|
||||
key: "namespace",
|
||||
get: function get() {
|
||||
return this._namespace;
|
||||
},
|
||||
set: function set(namespace) {
|
||||
if (namespace === true || namespace === "*" || namespace === "&") {
|
||||
this._namespace = namespace;
|
||||
|
||||
if (this.raws) {
|
||||
delete this.raws.namespace;
|
||||
}
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
var escaped = (0, _cssesc.default)(namespace, {
|
||||
isIdentifier: true
|
||||
});
|
||||
this._namespace = namespace;
|
||||
|
||||
if (escaped !== namespace) {
|
||||
(0, _util.ensureObject)(this, "raws");
|
||||
this.raws.namespace = escaped;
|
||||
} else if (this.raws) {
|
||||
delete this.raws.namespace;
|
||||
}
|
||||
}
|
||||
}, {
|
||||
key: "ns",
|
||||
get: function get() {
|
||||
return this._namespace;
|
||||
},
|
||||
set: function set(namespace) {
|
||||
this.namespace = namespace;
|
||||
}
|
||||
}, {
|
||||
key: "namespaceString",
|
||||
get: function get() {
|
||||
if (this.namespace) {
|
||||
var ns = this.stringifyProperty("namespace");
|
||||
|
||||
if (ns === true) {
|
||||
return '';
|
||||
} else {
|
||||
return ns;
|
||||
}
|
||||
} else {
|
||||
return '';
|
||||
}
|
||||
}
|
||||
}]);
|
||||
|
||||
return Namespace;
|
||||
}(_node.default);
|
||||
|
||||
exports.default = Namespace;
|
||||
;
|
||||
module.exports = exports.default;
|
||||
32
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/selectors/nesting.js
generated
vendored
Executable file
32
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/selectors/nesting.js
generated
vendored
Executable file
|
|
@ -0,0 +1,32 @@
|
|||
"use strict";
|
||||
|
||||
exports.__esModule = true;
|
||||
exports.default = void 0;
|
||||
|
||||
var _node = _interopRequireDefault(require("./node"));
|
||||
|
||||
var _types = require("./types");
|
||||
|
||||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
||||
|
||||
function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; subClass.__proto__ = superClass; }
|
||||
|
||||
var Nesting =
|
||||
/*#__PURE__*/
|
||||
function (_Node) {
|
||||
_inheritsLoose(Nesting, _Node);
|
||||
|
||||
function Nesting(opts) {
|
||||
var _this;
|
||||
|
||||
_this = _Node.call(this, opts) || this;
|
||||
_this.type = _types.NESTING;
|
||||
_this.value = '&';
|
||||
return _this;
|
||||
}
|
||||
|
||||
return Nesting;
|
||||
}(_node.default);
|
||||
|
||||
exports.default = Nesting;
|
||||
module.exports = exports.default;
|
||||
237
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/selectors/node.js
generated
vendored
Executable file
237
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/selectors/node.js
generated
vendored
Executable file
|
|
@ -0,0 +1,237 @@
|
|||
"use strict";
|
||||
|
||||
exports.__esModule = true;
|
||||
exports.default = void 0;
|
||||
|
||||
var _util = require("../util");
|
||||
|
||||
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
||||
|
||||
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
|
||||
|
||||
var cloneNode = function cloneNode(obj, parent) {
|
||||
if (typeof obj !== 'object' || obj === null) {
|
||||
return obj;
|
||||
}
|
||||
|
||||
var cloned = new obj.constructor();
|
||||
|
||||
for (var i in obj) {
|
||||
if (!obj.hasOwnProperty(i)) {
|
||||
continue;
|
||||
}
|
||||
|
||||
var value = obj[i];
|
||||
var type = typeof value;
|
||||
|
||||
if (i === 'parent' && type === 'object') {
|
||||
if (parent) {
|
||||
cloned[i] = parent;
|
||||
}
|
||||
} else if (value instanceof Array) {
|
||||
cloned[i] = value.map(function (j) {
|
||||
return cloneNode(j, cloned);
|
||||
});
|
||||
} else {
|
||||
cloned[i] = cloneNode(value, cloned);
|
||||
}
|
||||
}
|
||||
|
||||
return cloned;
|
||||
};
|
||||
|
||||
var Node =
|
||||
/*#__PURE__*/
|
||||
function () {
|
||||
function Node(opts) {
|
||||
if (opts === void 0) {
|
||||
opts = {};
|
||||
}
|
||||
|
||||
Object.assign(this, opts);
|
||||
this.spaces = this.spaces || {};
|
||||
this.spaces.before = this.spaces.before || '';
|
||||
this.spaces.after = this.spaces.after || '';
|
||||
}
|
||||
|
||||
var _proto = Node.prototype;
|
||||
|
||||
_proto.remove = function remove() {
|
||||
if (this.parent) {
|
||||
this.parent.removeChild(this);
|
||||
}
|
||||
|
||||
this.parent = undefined;
|
||||
return this;
|
||||
};
|
||||
|
||||
_proto.replaceWith = function replaceWith() {
|
||||
if (this.parent) {
|
||||
for (var index in arguments) {
|
||||
this.parent.insertBefore(this, arguments[index]);
|
||||
}
|
||||
|
||||
this.remove();
|
||||
}
|
||||
|
||||
return this;
|
||||
};
|
||||
|
||||
_proto.next = function next() {
|
||||
return this.parent.at(this.parent.index(this) + 1);
|
||||
};
|
||||
|
||||
_proto.prev = function prev() {
|
||||
return this.parent.at(this.parent.index(this) - 1);
|
||||
};
|
||||
|
||||
_proto.clone = function clone(overrides) {
|
||||
if (overrides === void 0) {
|
||||
overrides = {};
|
||||
}
|
||||
|
||||
var cloned = cloneNode(this);
|
||||
|
||||
for (var name in overrides) {
|
||||
cloned[name] = overrides[name];
|
||||
}
|
||||
|
||||
return cloned;
|
||||
}
|
||||
/**
|
||||
* Some non-standard syntax doesn't follow normal escaping rules for css.
|
||||
* This allows non standard syntax to be appended to an existing property
|
||||
* by specifying the escaped value. By specifying the escaped value,
|
||||
* illegal characters are allowed to be directly inserted into css output.
|
||||
* @param {string} name the property to set
|
||||
* @param {any} value the unescaped value of the property
|
||||
* @param {string} valueEscaped optional. the escaped value of the property.
|
||||
*/
|
||||
;
|
||||
|
||||
_proto.appendToPropertyAndEscape = function appendToPropertyAndEscape(name, value, valueEscaped) {
|
||||
if (!this.raws) {
|
||||
this.raws = {};
|
||||
}
|
||||
|
||||
var originalValue = this[name];
|
||||
var originalEscaped = this.raws[name];
|
||||
this[name] = originalValue + value; // this may trigger a setter that updates raws, so it has to be set first.
|
||||
|
||||
if (originalEscaped || valueEscaped !== value) {
|
||||
this.raws[name] = (originalEscaped || originalValue) + valueEscaped;
|
||||
} else {
|
||||
delete this.raws[name]; // delete any escaped value that was created by the setter.
|
||||
}
|
||||
}
|
||||
/**
|
||||
* Some non-standard syntax doesn't follow normal escaping rules for css.
|
||||
* This allows the escaped value to be specified directly, allowing illegal
|
||||
* characters to be directly inserted into css output.
|
||||
* @param {string} name the property to set
|
||||
* @param {any} value the unescaped value of the property
|
||||
* @param {string} valueEscaped the escaped value of the property.
|
||||
*/
|
||||
;
|
||||
|
||||
_proto.setPropertyAndEscape = function setPropertyAndEscape(name, value, valueEscaped) {
|
||||
if (!this.raws) {
|
||||
this.raws = {};
|
||||
}
|
||||
|
||||
this[name] = value; // this may trigger a setter that updates raws, so it has to be set first.
|
||||
|
||||
this.raws[name] = valueEscaped;
|
||||
}
|
||||
/**
|
||||
* When you want a value to passed through to CSS directly. This method
|
||||
* deletes the corresponding raw value causing the stringifier to fallback
|
||||
* to the unescaped value.
|
||||
* @param {string} name the property to set.
|
||||
* @param {any} value The value that is both escaped and unescaped.
|
||||
*/
|
||||
;
|
||||
|
||||
_proto.setPropertyWithoutEscape = function setPropertyWithoutEscape(name, value) {
|
||||
this[name] = value; // this may trigger a setter that updates raws, so it has to be set first.
|
||||
|
||||
if (this.raws) {
|
||||
delete this.raws[name];
|
||||
}
|
||||
}
|
||||
/**
|
||||
*
|
||||
* @param {number} line The number (starting with 1)
|
||||
* @param {number} column The column number (starting with 1)
|
||||
*/
|
||||
;
|
||||
|
||||
_proto.isAtPosition = function isAtPosition(line, column) {
|
||||
if (this.source && this.source.start && this.source.end) {
|
||||
if (this.source.start.line > line) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if (this.source.end.line < line) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if (this.source.start.line === line && this.source.start.column > column) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if (this.source.end.line === line && this.source.end.column < column) {
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
return undefined;
|
||||
};
|
||||
|
||||
_proto.stringifyProperty = function stringifyProperty(name) {
|
||||
return this.raws && this.raws[name] || this[name];
|
||||
};
|
||||
|
||||
_proto.toString = function toString() {
|
||||
return [this.rawSpaceBefore, String(this.stringifyProperty("value")), this.rawSpaceAfter].join('');
|
||||
};
|
||||
|
||||
_createClass(Node, [{
|
||||
key: "rawSpaceBefore",
|
||||
get: function get() {
|
||||
var rawSpace = this.raws && this.raws.spaces && this.raws.spaces.before;
|
||||
|
||||
if (rawSpace === undefined) {
|
||||
rawSpace = this.spaces && this.spaces.before;
|
||||
}
|
||||
|
||||
return rawSpace || "";
|
||||
},
|
||||
set: function set(raw) {
|
||||
(0, _util.ensureObject)(this, "raws", "spaces");
|
||||
this.raws.spaces.before = raw;
|
||||
}
|
||||
}, {
|
||||
key: "rawSpaceAfter",
|
||||
get: function get() {
|
||||
var rawSpace = this.raws && this.raws.spaces && this.raws.spaces.after;
|
||||
|
||||
if (rawSpace === undefined) {
|
||||
rawSpace = this.spaces.after;
|
||||
}
|
||||
|
||||
return rawSpace || "";
|
||||
},
|
||||
set: function set(raw) {
|
||||
(0, _util.ensureObject)(this, "raws", "spaces");
|
||||
this.raws.spaces.after = raw;
|
||||
}
|
||||
}]);
|
||||
|
||||
return Node;
|
||||
}();
|
||||
|
||||
exports.default = Node;
|
||||
module.exports = exports.default;
|
||||
38
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/selectors/pseudo.js
generated
vendored
Executable file
38
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/selectors/pseudo.js
generated
vendored
Executable file
|
|
@ -0,0 +1,38 @@
|
|||
"use strict";
|
||||
|
||||
exports.__esModule = true;
|
||||
exports.default = void 0;
|
||||
|
||||
var _container = _interopRequireDefault(require("./container"));
|
||||
|
||||
var _types = require("./types");
|
||||
|
||||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
||||
|
||||
function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; subClass.__proto__ = superClass; }
|
||||
|
||||
var Pseudo =
|
||||
/*#__PURE__*/
|
||||
function (_Container) {
|
||||
_inheritsLoose(Pseudo, _Container);
|
||||
|
||||
function Pseudo(opts) {
|
||||
var _this;
|
||||
|
||||
_this = _Container.call(this, opts) || this;
|
||||
_this.type = _types.PSEUDO;
|
||||
return _this;
|
||||
}
|
||||
|
||||
var _proto = Pseudo.prototype;
|
||||
|
||||
_proto.toString = function toString() {
|
||||
var params = this.length ? '(' + this.map(String).join(',') + ')' : '';
|
||||
return [this.rawSpaceBefore, this.stringifyProperty("value"), params, this.rawSpaceAfter].join('');
|
||||
};
|
||||
|
||||
return Pseudo;
|
||||
}(_container.default);
|
||||
|
||||
exports.default = Pseudo;
|
||||
module.exports = exports.default;
|
||||
60
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/selectors/root.js
generated
vendored
Executable file
60
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/selectors/root.js
generated
vendored
Executable file
|
|
@ -0,0 +1,60 @@
|
|||
"use strict";
|
||||
|
||||
exports.__esModule = true;
|
||||
exports.default = void 0;
|
||||
|
||||
var _container = _interopRequireDefault(require("./container"));
|
||||
|
||||
var _types = require("./types");
|
||||
|
||||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
||||
|
||||
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
|
||||
|
||||
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
|
||||
|
||||
function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; subClass.__proto__ = superClass; }
|
||||
|
||||
var Root =
|
||||
/*#__PURE__*/
|
||||
function (_Container) {
|
||||
_inheritsLoose(Root, _Container);
|
||||
|
||||
function Root(opts) {
|
||||
var _this;
|
||||
|
||||
_this = _Container.call(this, opts) || this;
|
||||
_this.type = _types.ROOT;
|
||||
return _this;
|
||||
}
|
||||
|
||||
var _proto = Root.prototype;
|
||||
|
||||
_proto.toString = function toString() {
|
||||
var str = this.reduce(function (memo, selector) {
|
||||
memo.push(String(selector));
|
||||
return memo;
|
||||
}, []).join(',');
|
||||
return this.trailingComma ? str + ',' : str;
|
||||
};
|
||||
|
||||
_proto.error = function error(message, options) {
|
||||
if (this._error) {
|
||||
return this._error(message, options);
|
||||
} else {
|
||||
return new Error(message);
|
||||
}
|
||||
};
|
||||
|
||||
_createClass(Root, [{
|
||||
key: "errorGenerator",
|
||||
set: function set(handler) {
|
||||
this._error = handler;
|
||||
}
|
||||
}]);
|
||||
|
||||
return Root;
|
||||
}(_container.default);
|
||||
|
||||
exports.default = Root;
|
||||
module.exports = exports.default;
|
||||
31
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/selectors/selector.js
generated
vendored
Executable file
31
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/selectors/selector.js
generated
vendored
Executable file
|
|
@ -0,0 +1,31 @@
|
|||
"use strict";
|
||||
|
||||
exports.__esModule = true;
|
||||
exports.default = void 0;
|
||||
|
||||
var _container = _interopRequireDefault(require("./container"));
|
||||
|
||||
var _types = require("./types");
|
||||
|
||||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
||||
|
||||
function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; subClass.__proto__ = superClass; }
|
||||
|
||||
var Selector =
|
||||
/*#__PURE__*/
|
||||
function (_Container) {
|
||||
_inheritsLoose(Selector, _Container);
|
||||
|
||||
function Selector(opts) {
|
||||
var _this;
|
||||
|
||||
_this = _Container.call(this, opts) || this;
|
||||
_this.type = _types.SELECTOR;
|
||||
return _this;
|
||||
}
|
||||
|
||||
return Selector;
|
||||
}(_container.default);
|
||||
|
||||
exports.default = Selector;
|
||||
module.exports = exports.default;
|
||||
31
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/selectors/string.js
generated
vendored
Executable file
31
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/selectors/string.js
generated
vendored
Executable file
|
|
@ -0,0 +1,31 @@
|
|||
"use strict";
|
||||
|
||||
exports.__esModule = true;
|
||||
exports.default = void 0;
|
||||
|
||||
var _node = _interopRequireDefault(require("./node"));
|
||||
|
||||
var _types = require("./types");
|
||||
|
||||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
||||
|
||||
function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; subClass.__proto__ = superClass; }
|
||||
|
||||
var String =
|
||||
/*#__PURE__*/
|
||||
function (_Node) {
|
||||
_inheritsLoose(String, _Node);
|
||||
|
||||
function String(opts) {
|
||||
var _this;
|
||||
|
||||
_this = _Node.call(this, opts) || this;
|
||||
_this.type = _types.STRING;
|
||||
return _this;
|
||||
}
|
||||
|
||||
return String;
|
||||
}(_node.default);
|
||||
|
||||
exports.default = String;
|
||||
module.exports = exports.default;
|
||||
31
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/selectors/tag.js
generated
vendored
Executable file
31
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/selectors/tag.js
generated
vendored
Executable file
|
|
@ -0,0 +1,31 @@
|
|||
"use strict";
|
||||
|
||||
exports.__esModule = true;
|
||||
exports.default = void 0;
|
||||
|
||||
var _namespace = _interopRequireDefault(require("./namespace"));
|
||||
|
||||
var _types = require("./types");
|
||||
|
||||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
||||
|
||||
function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; subClass.__proto__ = superClass; }
|
||||
|
||||
var Tag =
|
||||
/*#__PURE__*/
|
||||
function (_Namespace) {
|
||||
_inheritsLoose(Tag, _Namespace);
|
||||
|
||||
function Tag(opts) {
|
||||
var _this;
|
||||
|
||||
_this = _Namespace.call(this, opts) || this;
|
||||
_this.type = _types.TAG;
|
||||
return _this;
|
||||
}
|
||||
|
||||
return Tag;
|
||||
}(_namespace.default);
|
||||
|
||||
exports.default = Tag;
|
||||
module.exports = exports.default;
|
||||
28
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/selectors/types.js
generated
vendored
Executable file
28
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/selectors/types.js
generated
vendored
Executable file
|
|
@ -0,0 +1,28 @@
|
|||
"use strict";
|
||||
|
||||
exports.__esModule = true;
|
||||
exports.UNIVERSAL = exports.ATTRIBUTE = exports.CLASS = exports.COMBINATOR = exports.COMMENT = exports.ID = exports.NESTING = exports.PSEUDO = exports.ROOT = exports.SELECTOR = exports.STRING = exports.TAG = void 0;
|
||||
var TAG = 'tag';
|
||||
exports.TAG = TAG;
|
||||
var STRING = 'string';
|
||||
exports.STRING = STRING;
|
||||
var SELECTOR = 'selector';
|
||||
exports.SELECTOR = SELECTOR;
|
||||
var ROOT = 'root';
|
||||
exports.ROOT = ROOT;
|
||||
var PSEUDO = 'pseudo';
|
||||
exports.PSEUDO = PSEUDO;
|
||||
var NESTING = 'nesting';
|
||||
exports.NESTING = NESTING;
|
||||
var ID = 'id';
|
||||
exports.ID = ID;
|
||||
var COMMENT = 'comment';
|
||||
exports.COMMENT = COMMENT;
|
||||
var COMBINATOR = 'combinator';
|
||||
exports.COMBINATOR = COMBINATOR;
|
||||
var CLASS = 'class';
|
||||
exports.CLASS = CLASS;
|
||||
var ATTRIBUTE = 'attribute';
|
||||
exports.ATTRIBUTE = ATTRIBUTE;
|
||||
var UNIVERSAL = 'universal';
|
||||
exports.UNIVERSAL = UNIVERSAL;
|
||||
32
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/selectors/universal.js
generated
vendored
Executable file
32
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/selectors/universal.js
generated
vendored
Executable file
|
|
@ -0,0 +1,32 @@
|
|||
"use strict";
|
||||
|
||||
exports.__esModule = true;
|
||||
exports.default = void 0;
|
||||
|
||||
var _namespace = _interopRequireDefault(require("./namespace"));
|
||||
|
||||
var _types = require("./types");
|
||||
|
||||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
||||
|
||||
function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; subClass.__proto__ = superClass; }
|
||||
|
||||
var Universal =
|
||||
/*#__PURE__*/
|
||||
function (_Namespace) {
|
||||
_inheritsLoose(Universal, _Namespace);
|
||||
|
||||
function Universal(opts) {
|
||||
var _this;
|
||||
|
||||
_this = _Namespace.call(this, opts) || this;
|
||||
_this.type = _types.UNIVERSAL;
|
||||
_this.value = '*';
|
||||
return _this;
|
||||
}
|
||||
|
||||
return Universal;
|
||||
}(_namespace.default);
|
||||
|
||||
exports.default = Universal;
|
||||
module.exports = exports.default;
|
||||
13
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/sortAscending.js
generated
vendored
Executable file
13
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/sortAscending.js
generated
vendored
Executable file
|
|
@ -0,0 +1,13 @@
|
|||
"use strict";
|
||||
|
||||
exports.__esModule = true;
|
||||
exports.default = sortAscending;
|
||||
|
||||
function sortAscending(list) {
|
||||
return list.sort(function (a, b) {
|
||||
return a - b;
|
||||
});
|
||||
}
|
||||
|
||||
;
|
||||
module.exports = exports.default;
|
||||
95
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/tokenTypes.js
generated
vendored
Executable file
95
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/tokenTypes.js
generated
vendored
Executable file
|
|
@ -0,0 +1,95 @@
|
|||
"use strict";
|
||||
|
||||
exports.__esModule = true;
|
||||
exports.combinator = exports.word = exports.comment = exports.str = exports.tab = exports.newline = exports.feed = exports.cr = exports.backslash = exports.bang = exports.slash = exports.doubleQuote = exports.singleQuote = exports.space = exports.greaterThan = exports.pipe = exports.equals = exports.plus = exports.caret = exports.tilde = exports.dollar = exports.closeSquare = exports.openSquare = exports.closeParenthesis = exports.openParenthesis = exports.semicolon = exports.colon = exports.comma = exports.at = exports.asterisk = exports.ampersand = void 0;
|
||||
var ampersand = 38; // `&`.charCodeAt(0);
|
||||
|
||||
exports.ampersand = ampersand;
|
||||
var asterisk = 42; // `*`.charCodeAt(0);
|
||||
|
||||
exports.asterisk = asterisk;
|
||||
var at = 64; // `@`.charCodeAt(0);
|
||||
|
||||
exports.at = at;
|
||||
var comma = 44; // `,`.charCodeAt(0);
|
||||
|
||||
exports.comma = comma;
|
||||
var colon = 58; // `:`.charCodeAt(0);
|
||||
|
||||
exports.colon = colon;
|
||||
var semicolon = 59; // `;`.charCodeAt(0);
|
||||
|
||||
exports.semicolon = semicolon;
|
||||
var openParenthesis = 40; // `(`.charCodeAt(0);
|
||||
|
||||
exports.openParenthesis = openParenthesis;
|
||||
var closeParenthesis = 41; // `)`.charCodeAt(0);
|
||||
|
||||
exports.closeParenthesis = closeParenthesis;
|
||||
var openSquare = 91; // `[`.charCodeAt(0);
|
||||
|
||||
exports.openSquare = openSquare;
|
||||
var closeSquare = 93; // `]`.charCodeAt(0);
|
||||
|
||||
exports.closeSquare = closeSquare;
|
||||
var dollar = 36; // `$`.charCodeAt(0);
|
||||
|
||||
exports.dollar = dollar;
|
||||
var tilde = 126; // `~`.charCodeAt(0);
|
||||
|
||||
exports.tilde = tilde;
|
||||
var caret = 94; // `^`.charCodeAt(0);
|
||||
|
||||
exports.caret = caret;
|
||||
var plus = 43; // `+`.charCodeAt(0);
|
||||
|
||||
exports.plus = plus;
|
||||
var equals = 61; // `=`.charCodeAt(0);
|
||||
|
||||
exports.equals = equals;
|
||||
var pipe = 124; // `|`.charCodeAt(0);
|
||||
|
||||
exports.pipe = pipe;
|
||||
var greaterThan = 62; // `>`.charCodeAt(0);
|
||||
|
||||
exports.greaterThan = greaterThan;
|
||||
var space = 32; // ` `.charCodeAt(0);
|
||||
|
||||
exports.space = space;
|
||||
var singleQuote = 39; // `'`.charCodeAt(0);
|
||||
|
||||
exports.singleQuote = singleQuote;
|
||||
var doubleQuote = 34; // `"`.charCodeAt(0);
|
||||
|
||||
exports.doubleQuote = doubleQuote;
|
||||
var slash = 47; // `/`.charCodeAt(0);
|
||||
|
||||
exports.slash = slash;
|
||||
var bang = 33; // `!`.charCodeAt(0);
|
||||
|
||||
exports.bang = bang;
|
||||
var backslash = 92; // '\\'.charCodeAt(0);
|
||||
|
||||
exports.backslash = backslash;
|
||||
var cr = 13; // '\r'.charCodeAt(0);
|
||||
|
||||
exports.cr = cr;
|
||||
var feed = 12; // '\f'.charCodeAt(0);
|
||||
|
||||
exports.feed = feed;
|
||||
var newline = 10; // '\n'.charCodeAt(0);
|
||||
|
||||
exports.newline = newline;
|
||||
var tab = 9; // '\t'.charCodeAt(0);
|
||||
// Expose aliases primarily for readability.
|
||||
|
||||
exports.tab = tab;
|
||||
var str = singleQuote; // No good single character representation!
|
||||
|
||||
exports.str = str;
|
||||
var comment = -1;
|
||||
exports.comment = comment;
|
||||
var word = -2;
|
||||
exports.word = word;
|
||||
var combinator = -3;
|
||||
exports.combinator = combinator;
|
||||
268
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/tokenize.js
generated
vendored
Executable file
268
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/tokenize.js
generated
vendored
Executable file
|
|
@ -0,0 +1,268 @@
|
|||
"use strict";
|
||||
|
||||
exports.__esModule = true;
|
||||
exports.default = tokenize;
|
||||
exports.FIELDS = void 0;
|
||||
|
||||
var t = _interopRequireWildcard(require("./tokenTypes"));
|
||||
|
||||
var _unescapable, _wordDelimiters;
|
||||
|
||||
function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = Object.defineProperty && Object.getOwnPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : {}; if (desc.get || desc.set) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } } newObj.default = obj; return newObj; } }
|
||||
|
||||
var unescapable = (_unescapable = {}, _unescapable[t.tab] = true, _unescapable[t.newline] = true, _unescapable[t.cr] = true, _unescapable[t.feed] = true, _unescapable);
|
||||
var wordDelimiters = (_wordDelimiters = {}, _wordDelimiters[t.space] = true, _wordDelimiters[t.tab] = true, _wordDelimiters[t.newline] = true, _wordDelimiters[t.cr] = true, _wordDelimiters[t.feed] = true, _wordDelimiters[t.ampersand] = true, _wordDelimiters[t.asterisk] = true, _wordDelimiters[t.bang] = true, _wordDelimiters[t.comma] = true, _wordDelimiters[t.colon] = true, _wordDelimiters[t.semicolon] = true, _wordDelimiters[t.openParenthesis] = true, _wordDelimiters[t.closeParenthesis] = true, _wordDelimiters[t.openSquare] = true, _wordDelimiters[t.closeSquare] = true, _wordDelimiters[t.singleQuote] = true, _wordDelimiters[t.doubleQuote] = true, _wordDelimiters[t.plus] = true, _wordDelimiters[t.pipe] = true, _wordDelimiters[t.tilde] = true, _wordDelimiters[t.greaterThan] = true, _wordDelimiters[t.equals] = true, _wordDelimiters[t.dollar] = true, _wordDelimiters[t.caret] = true, _wordDelimiters[t.slash] = true, _wordDelimiters);
|
||||
var hex = {};
|
||||
var hexChars = "0123456789abcdefABCDEF";
|
||||
|
||||
for (var i = 0; i < hexChars.length; i++) {
|
||||
hex[hexChars.charCodeAt(i)] = true;
|
||||
}
|
||||
/**
|
||||
* Returns the last index of the bar css word
|
||||
* @param {string} css The string in which the word begins
|
||||
* @param {number} start The index into the string where word's first letter occurs
|
||||
*/
|
||||
|
||||
|
||||
function consumeWord(css, start) {
|
||||
var next = start;
|
||||
var code;
|
||||
|
||||
do {
|
||||
code = css.charCodeAt(next);
|
||||
|
||||
if (wordDelimiters[code]) {
|
||||
return next - 1;
|
||||
} else if (code === t.backslash) {
|
||||
next = consumeEscape(css, next) + 1;
|
||||
} else {
|
||||
// All other characters are part of the word
|
||||
next++;
|
||||
}
|
||||
} while (next < css.length);
|
||||
|
||||
return next - 1;
|
||||
}
|
||||
/**
|
||||
* Returns the last index of the escape sequence
|
||||
* @param {string} css The string in which the sequence begins
|
||||
* @param {number} start The index into the string where escape character (`\`) occurs.
|
||||
*/
|
||||
|
||||
|
||||
function consumeEscape(css, start) {
|
||||
var next = start;
|
||||
var code = css.charCodeAt(next + 1);
|
||||
|
||||
if (unescapable[code]) {// just consume the escape char
|
||||
} else if (hex[code]) {
|
||||
var hexDigits = 0; // consume up to 6 hex chars
|
||||
|
||||
do {
|
||||
next++;
|
||||
hexDigits++;
|
||||
code = css.charCodeAt(next + 1);
|
||||
} while (hex[code] && hexDigits < 6); // if fewer than 6 hex chars, a trailing space ends the escape
|
||||
|
||||
|
||||
if (hexDigits < 6 && code === t.space) {
|
||||
next++;
|
||||
}
|
||||
} else {
|
||||
// the next char is part of the current word
|
||||
next++;
|
||||
}
|
||||
|
||||
return next;
|
||||
}
|
||||
|
||||
var FIELDS = {
|
||||
TYPE: 0,
|
||||
START_LINE: 1,
|
||||
START_COL: 2,
|
||||
END_LINE: 3,
|
||||
END_COL: 4,
|
||||
START_POS: 5,
|
||||
END_POS: 6
|
||||
};
|
||||
exports.FIELDS = FIELDS;
|
||||
|
||||
function tokenize(input) {
|
||||
var tokens = [];
|
||||
var css = input.css.valueOf();
|
||||
var _css = css,
|
||||
length = _css.length;
|
||||
var offset = -1;
|
||||
var line = 1;
|
||||
var start = 0;
|
||||
var end = 0;
|
||||
var code, content, endColumn, endLine, escaped, escapePos, last, lines, next, nextLine, nextOffset, quote, tokenType;
|
||||
|
||||
function unclosed(what, fix) {
|
||||
if (input.safe) {
|
||||
// fyi: this is never set to true.
|
||||
css += fix;
|
||||
next = css.length - 1;
|
||||
} else {
|
||||
throw input.error('Unclosed ' + what, line, start - offset, start);
|
||||
}
|
||||
}
|
||||
|
||||
while (start < length) {
|
||||
code = css.charCodeAt(start);
|
||||
|
||||
if (code === t.newline) {
|
||||
offset = start;
|
||||
line += 1;
|
||||
}
|
||||
|
||||
switch (code) {
|
||||
case t.space:
|
||||
case t.tab:
|
||||
case t.newline:
|
||||
case t.cr:
|
||||
case t.feed:
|
||||
next = start;
|
||||
|
||||
do {
|
||||
next += 1;
|
||||
code = css.charCodeAt(next);
|
||||
|
||||
if (code === t.newline) {
|
||||
offset = next;
|
||||
line += 1;
|
||||
}
|
||||
} while (code === t.space || code === t.newline || code === t.tab || code === t.cr || code === t.feed);
|
||||
|
||||
tokenType = t.space;
|
||||
endLine = line;
|
||||
endColumn = next - offset - 1;
|
||||
end = next;
|
||||
break;
|
||||
|
||||
case t.plus:
|
||||
case t.greaterThan:
|
||||
case t.tilde:
|
||||
case t.pipe:
|
||||
next = start;
|
||||
|
||||
do {
|
||||
next += 1;
|
||||
code = css.charCodeAt(next);
|
||||
} while (code === t.plus || code === t.greaterThan || code === t.tilde || code === t.pipe);
|
||||
|
||||
tokenType = t.combinator;
|
||||
endLine = line;
|
||||
endColumn = start - offset;
|
||||
end = next;
|
||||
break;
|
||||
// Consume these characters as single tokens.
|
||||
|
||||
case t.asterisk:
|
||||
case t.ampersand:
|
||||
case t.bang:
|
||||
case t.comma:
|
||||
case t.equals:
|
||||
case t.dollar:
|
||||
case t.caret:
|
||||
case t.openSquare:
|
||||
case t.closeSquare:
|
||||
case t.colon:
|
||||
case t.semicolon:
|
||||
case t.openParenthesis:
|
||||
case t.closeParenthesis:
|
||||
next = start;
|
||||
tokenType = code;
|
||||
endLine = line;
|
||||
endColumn = start - offset;
|
||||
end = next + 1;
|
||||
break;
|
||||
|
||||
case t.singleQuote:
|
||||
case t.doubleQuote:
|
||||
quote = code === t.singleQuote ? "'" : '"';
|
||||
next = start;
|
||||
|
||||
do {
|
||||
escaped = false;
|
||||
next = css.indexOf(quote, next + 1);
|
||||
|
||||
if (next === -1) {
|
||||
unclosed('quote', quote);
|
||||
}
|
||||
|
||||
escapePos = next;
|
||||
|
||||
while (css.charCodeAt(escapePos - 1) === t.backslash) {
|
||||
escapePos -= 1;
|
||||
escaped = !escaped;
|
||||
}
|
||||
} while (escaped);
|
||||
|
||||
tokenType = t.str;
|
||||
endLine = line;
|
||||
endColumn = start - offset;
|
||||
end = next + 1;
|
||||
break;
|
||||
|
||||
default:
|
||||
if (code === t.slash && css.charCodeAt(start + 1) === t.asterisk) {
|
||||
next = css.indexOf('*/', start + 2) + 1;
|
||||
|
||||
if (next === 0) {
|
||||
unclosed('comment', '*/');
|
||||
}
|
||||
|
||||
content = css.slice(start, next + 1);
|
||||
lines = content.split('\n');
|
||||
last = lines.length - 1;
|
||||
|
||||
if (last > 0) {
|
||||
nextLine = line + last;
|
||||
nextOffset = next - lines[last].length;
|
||||
} else {
|
||||
nextLine = line;
|
||||
nextOffset = offset;
|
||||
}
|
||||
|
||||
tokenType = t.comment;
|
||||
line = nextLine;
|
||||
endLine = nextLine;
|
||||
endColumn = next - nextOffset;
|
||||
} else if (code === t.slash) {
|
||||
next = start;
|
||||
tokenType = code;
|
||||
endLine = line;
|
||||
endColumn = start - offset;
|
||||
end = next + 1;
|
||||
} else {
|
||||
next = consumeWord(css, start);
|
||||
tokenType = t.word;
|
||||
endLine = line;
|
||||
endColumn = next - offset;
|
||||
}
|
||||
|
||||
end = next + 1;
|
||||
break;
|
||||
} // Ensure that the token structure remains consistent
|
||||
|
||||
|
||||
tokens.push([tokenType, // [0] Token type
|
||||
line, // [1] Starting line
|
||||
start - offset, // [2] Starting column
|
||||
endLine, // [3] Ending line
|
||||
endColumn, // [4] Ending column
|
||||
start, // [5] Start position / Source index
|
||||
end]); // Reset offset for the next token
|
||||
|
||||
if (nextOffset) {
|
||||
offset = nextOffset;
|
||||
nextOffset = null;
|
||||
}
|
||||
|
||||
start = end;
|
||||
}
|
||||
|
||||
return tokens;
|
||||
}
|
||||
22
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/util/ensureObject.js
generated
vendored
Executable file
22
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/util/ensureObject.js
generated
vendored
Executable file
|
|
@ -0,0 +1,22 @@
|
|||
"use strict";
|
||||
|
||||
exports.__esModule = true;
|
||||
exports.default = ensureObject;
|
||||
|
||||
function ensureObject(obj) {
|
||||
for (var _len = arguments.length, props = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
|
||||
props[_key - 1] = arguments[_key];
|
||||
}
|
||||
|
||||
while (props.length > 0) {
|
||||
var prop = props.shift();
|
||||
|
||||
if (!obj[prop]) {
|
||||
obj[prop] = {};
|
||||
}
|
||||
|
||||
obj = obj[prop];
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = exports.default;
|
||||
24
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/util/getProp.js
generated
vendored
Executable file
24
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/util/getProp.js
generated
vendored
Executable file
|
|
@ -0,0 +1,24 @@
|
|||
"use strict";
|
||||
|
||||
exports.__esModule = true;
|
||||
exports.default = getProp;
|
||||
|
||||
function getProp(obj) {
|
||||
for (var _len = arguments.length, props = new Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
|
||||
props[_key - 1] = arguments[_key];
|
||||
}
|
||||
|
||||
while (props.length > 0) {
|
||||
var prop = props.shift();
|
||||
|
||||
if (!obj[prop]) {
|
||||
return undefined;
|
||||
}
|
||||
|
||||
obj = obj[prop];
|
||||
}
|
||||
|
||||
return obj;
|
||||
}
|
||||
|
||||
module.exports = exports.default;
|
||||
22
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/util/index.js
generated
vendored
Executable file
22
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/util/index.js
generated
vendored
Executable file
|
|
@ -0,0 +1,22 @@
|
|||
"use strict";
|
||||
|
||||
exports.__esModule = true;
|
||||
exports.stripComments = exports.ensureObject = exports.getProp = exports.unesc = void 0;
|
||||
|
||||
var _unesc = _interopRequireDefault(require("./unesc"));
|
||||
|
||||
exports.unesc = _unesc.default;
|
||||
|
||||
var _getProp = _interopRequireDefault(require("./getProp"));
|
||||
|
||||
exports.getProp = _getProp.default;
|
||||
|
||||
var _ensureObject = _interopRequireDefault(require("./ensureObject"));
|
||||
|
||||
exports.ensureObject = _ensureObject.default;
|
||||
|
||||
var _stripComments = _interopRequireDefault(require("./stripComments"));
|
||||
|
||||
exports.stripComments = _stripComments.default;
|
||||
|
||||
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
||||
27
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/util/stripComments.js
generated
vendored
Executable file
27
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/util/stripComments.js
generated
vendored
Executable file
|
|
@ -0,0 +1,27 @@
|
|||
"use strict";
|
||||
|
||||
exports.__esModule = true;
|
||||
exports.default = stripComments;
|
||||
|
||||
function stripComments(str) {
|
||||
var s = "";
|
||||
var commentStart = str.indexOf("/*");
|
||||
var lastEnd = 0;
|
||||
|
||||
while (commentStart >= 0) {
|
||||
s = s + str.slice(lastEnd, commentStart);
|
||||
var commentEnd = str.indexOf("*/", commentStart + 2);
|
||||
|
||||
if (commentEnd < 0) {
|
||||
return s;
|
||||
}
|
||||
|
||||
lastEnd = commentEnd + 2;
|
||||
commentStart = str.indexOf("/*", lastEnd);
|
||||
}
|
||||
|
||||
s = s + str.slice(lastEnd);
|
||||
return s;
|
||||
}
|
||||
|
||||
module.exports = exports.default;
|
||||
20
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/util/unesc.js
generated
vendored
Executable file
20
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/dist/util/unesc.js
generated
vendored
Executable file
|
|
@ -0,0 +1,20 @@
|
|||
"use strict";
|
||||
|
||||
exports.__esModule = true;
|
||||
exports.default = unesc;
|
||||
var whitespace = '[\\x20\\t\\r\\n\\f]';
|
||||
var unescapeRegExp = new RegExp('\\\\([\\da-f]{1,6}' + whitespace + '?|(' + whitespace + ')|.)', 'ig');
|
||||
|
||||
function unesc(str) {
|
||||
return str.replace(unescapeRegExp, function (_, escaped, escapedWhitespace) {
|
||||
var high = '0x' + escaped - 0x10000; // NaN means non-codepoint
|
||||
// Workaround erroneous numeric interpretation of +"0x"
|
||||
// eslint-disable-next-line no-self-compare
|
||||
|
||||
return high !== high || escapedWhitespace ? escaped : high < 0 ? // BMP codepoint
|
||||
String.fromCharCode(high + 0x10000) : // Supplemental Plane codepoint (surrogate pair)
|
||||
String.fromCharCode(high >> 10 | 0xd800, high & 0x3ff | 0xdc00);
|
||||
});
|
||||
}
|
||||
|
||||
module.exports = exports.default;
|
||||
76
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/package.json
generated
vendored
Executable file
76
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/package.json
generated
vendored
Executable file
|
|
@ -0,0 +1,76 @@
|
|||
{
|
||||
"name": "postcss-selector-parser",
|
||||
"version": "6.0.2",
|
||||
"devDependencies": {
|
||||
"@babel/cli": "^7.2.3",
|
||||
"@babel/core": "^7.3.4",
|
||||
"@babel/plugin-proposal-class-properties": "^7.3.4",
|
||||
"@babel/preset-env": "^7.3.4",
|
||||
"@babel/register": "^7.0.0",
|
||||
"ava": "^1.3.1",
|
||||
"babel-eslint": "^10.0.1",
|
||||
"babel-plugin-add-module-exports": "^1.0.0",
|
||||
"coveralls": "^3.0.3",
|
||||
"del-cli": "^1.1.0",
|
||||
"eslint": "^5.15.1",
|
||||
"eslint-plugin-babel": "^5.3.0",
|
||||
"eslint-plugin-import": "^2.16.0",
|
||||
"glob": "^7.1.3",
|
||||
"minimist": "^1.2.0",
|
||||
"nyc": "^13.3.0",
|
||||
"postcss": "^7.0.14",
|
||||
"semver": "^5.6.0"
|
||||
},
|
||||
"main": "dist/index.js",
|
||||
"types": "postcss-selector-parser.d.ts",
|
||||
"files": [
|
||||
"API.md",
|
||||
"CHANGELOG.md",
|
||||
"LICENSE-MIT",
|
||||
"dist",
|
||||
"postcss-selector-parser.d.ts"
|
||||
],
|
||||
"scripts": {
|
||||
"pretest": "eslint src",
|
||||
"prepare": "del-cli dist && BABEL_ENV=publish babel src --out-dir dist --ignore /__tests__/",
|
||||
"lintfix": "eslint --fix src",
|
||||
"report": "nyc report --reporter=html",
|
||||
"test": "nyc ava src/__tests__/*.js",
|
||||
"testone": "ava"
|
||||
},
|
||||
"dependencies": {
|
||||
"cssesc": "^3.0.0",
|
||||
"indexes-of": "^1.0.1",
|
||||
"uniq": "^1.0.1"
|
||||
},
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": ">=4"
|
||||
},
|
||||
"homepage": "https://github.com/postcss/postcss-selector-parser",
|
||||
"contributors": [
|
||||
{
|
||||
"name": "Ben Briggs",
|
||||
"email": "beneb.info@gmail.com",
|
||||
"url": "http://beneb.info"
|
||||
},
|
||||
{
|
||||
"name": "Chris Eppstein",
|
||||
"email": "chris@eppsteins.net",
|
||||
"url": "http://twitter.com/chriseppstein"
|
||||
}
|
||||
],
|
||||
"repository": "postcss/postcss-selector-parser",
|
||||
"ava": {
|
||||
"require": [
|
||||
"@babel/register"
|
||||
],
|
||||
"concurrency": 5
|
||||
},
|
||||
"nyc": {
|
||||
"exclude": [
|
||||
"node_modules",
|
||||
"**/__tests__"
|
||||
]
|
||||
}
|
||||
}
|
||||
499
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/postcss-selector-parser.d.ts
generated
vendored
Executable file
499
BACK_BACK/node_modules/uncss/node_modules/postcss-selector-parser/postcss-selector-parser.d.ts
generated
vendored
Executable file
|
|
@ -0,0 +1,499 @@
|
|||
// Type definitions for postcss-selector-parser 2.2.3
|
||||
// Definitions by: Chris Eppstein <chris@eppsteins.net>
|
||||
|
||||
/*~ Note that ES6 modules cannot directly export callable functions.
|
||||
*~ This file should be imported using the CommonJS-style:
|
||||
*~ import x = require('someLibrary');
|
||||
*~
|
||||
*~ Refer to the documentation to understand common
|
||||
*~ workarounds for this limitation of ES6 modules.
|
||||
*/
|
||||
|
||||
/*~ This declaration specifies that the function
|
||||
*~ is the exported object from the file
|
||||
*/
|
||||
export = parser;
|
||||
|
||||
// TODO: Conditional types in TS 1.8 will really clean this up.
|
||||
declare function parser(): parser.Processor<never>;
|
||||
declare function parser<Transform>(processor: parser.AsyncProcessor<Transform>): parser.Processor<Transform, never>;
|
||||
declare function parser(processor: parser.AsyncProcessor<void>): parser.Processor<never, never>;
|
||||
declare function parser<Transform>(processor: parser.SyncProcessor<Transform>): parser.Processor<Transform>;
|
||||
declare function parser(processor: parser.SyncProcessor<void>): parser.Processor<never>;
|
||||
declare function parser<Transform>(processor?: parser.SyncProcessor<Transform> | parser.AsyncProcessor<Transform>): parser.Processor<Transform>;
|
||||
|
||||
/*~ If you want to expose types from your module as well, you can
|
||||
*~ place them in this block. Often you will want to describe the
|
||||
*~ shape of the return type of the function; that type should
|
||||
*~ be declared in here, as this example shows.
|
||||
*/
|
||||
declare namespace parser {
|
||||
/* copied from postcss -- so we don't need to add a dependency */
|
||||
type ErrorOptions = {
|
||||
plugin?: string;
|
||||
word?: string;
|
||||
index?: number
|
||||
};
|
||||
/* the bits we use of postcss.Rule, copied from postcss -- so we don't need to add a dependency */
|
||||
type PostCSSRuleNode = {
|
||||
selector: string
|
||||
/**
|
||||
* @returns postcss.CssSyntaxError but it's a complex object, caller
|
||||
* should cast to it if they have a dependency on postcss.
|
||||
*/
|
||||
error(message: string, options?: ErrorOptions): Error;
|
||||
};
|
||||
/** Accepts a string */
|
||||
type Selectors = string | PostCSSRuleNode
|
||||
type ProcessorFn<ReturnType = void> = (root: parser.Root) => ReturnType;
|
||||
type SyncProcessor<Transform = void> = ProcessorFn<Transform>;
|
||||
type AsyncProcessor<Transform = void> = ProcessorFn<PromiseLike<Transform>>;
|
||||
|
||||
const TAG: "tag";
|
||||
const STRING: "string";
|
||||
const SELECTOR: "selector";
|
||||
const ROOT: "root";
|
||||
const PSEUDO: "pseudo";
|
||||
const NESTING: "nesting";
|
||||
const ID: "id";
|
||||
const COMMENT: "comment";
|
||||
const COMBINATOR: "combinator";
|
||||
const CLASS: "class";
|
||||
const ATTRIBUTE: "attribute";
|
||||
const UNIVERSAL: "universal";
|
||||
|
||||
interface NodeTypes {
|
||||
tag: Tag,
|
||||
string: String,
|
||||
selector: Selector,
|
||||
root: Root,
|
||||
pseudo: Pseudo,
|
||||
nesting: Nesting,
|
||||
id: Identifier,
|
||||
comment: Comment,
|
||||
combinator: Combinator,
|
||||
class: ClassName,
|
||||
attribute: Attribute,
|
||||
universal: Universal
|
||||
}
|
||||
|
||||
type Node = NodeTypes[keyof NodeTypes];
|
||||
|
||||
function isNode(node: any): node is Node;
|
||||
|
||||
interface Options {
|
||||
/**
|
||||
* Preserve whitespace when true. Default: false;
|
||||
*/
|
||||
lossless: boolean;
|
||||
/**
|
||||
* When true and a postcss.Rule is passed, set the result of
|
||||
* processing back onto the rule when done. Default: false.
|
||||
*/
|
||||
updateSelector: boolean;
|
||||
}
|
||||
class Processor<
|
||||
TransformType = never,
|
||||
SyncSelectorsType extends Selectors | never = Selectors
|
||||
> {
|
||||
res: Root;
|
||||
readonly result: String;
|
||||
ast(selectors: Selectors, options?: Partial<Options>): Promise<Root>;
|
||||
astSync(selectors: SyncSelectorsType, options?: Partial<Options>): Root;
|
||||
transform(selectors: Selectors, options?: Partial<Options>): Promise<TransformType>;
|
||||
transformSync(selectors: SyncSelectorsType, options?: Partial<Options>): TransformType;
|
||||
process(selectors: Selectors, options?: Partial<Options>): Promise<string>;
|
||||
processSync(selectors: SyncSelectorsType, options?: Partial<Options>): string;
|
||||
}
|
||||
interface ParserOptions {
|
||||
css: string;
|
||||
error: (message: string, options: ErrorOptions) => Error;
|
||||
options: Options;
|
||||
}
|
||||
class Parser {
|
||||
input: ParserOptions;
|
||||
lossy: boolean;
|
||||
position: number;
|
||||
root: Root;
|
||||
selectors: string;
|
||||
current: Selector;
|
||||
constructor(input: ParserOptions);
|
||||
/**
|
||||
* Raises an error, if the processor is invoked on
|
||||
* a postcss Rule node, a better error message is raised.
|
||||
*/
|
||||
error(message: string, options?: ErrorOptions): void;
|
||||
}
|
||||
interface NodeSource {
|
||||
start?: {
|
||||
line: number,
|
||||
column: number
|
||||
},
|
||||
end?: {
|
||||
line: number,
|
||||
column: number
|
||||
}
|
||||
}
|
||||
interface SpaceAround {
|
||||
before: string;
|
||||
after: string;
|
||||
}
|
||||
interface Spaces extends SpaceAround {
|
||||
[spaceType: string]: string | Partial<SpaceAround> | undefined;
|
||||
}
|
||||
interface NodeOptions<Value = string> {
|
||||
value: Value;
|
||||
spaces?: Partial<Spaces>;
|
||||
source?: NodeSource;
|
||||
sourceIndex?: number;
|
||||
}
|
||||
interface Base<
|
||||
Value extends string | undefined = string,
|
||||
ParentType extends Container | undefined = Container | undefined
|
||||
> {
|
||||
type: keyof NodeTypes;
|
||||
parent: ParentType;
|
||||
value: Value;
|
||||
spaces: Spaces;
|
||||
source?: NodeSource;
|
||||
sourceIndex: number;
|
||||
rawSpaceBefore: string;
|
||||
rawSpaceAfter: string;
|
||||
remove(): Node;
|
||||
replaceWith(...nodes: Node[]): Node;
|
||||
next(): Node;
|
||||
prev(): Node;
|
||||
clone(opts: {[override: string]:any}): Node;
|
||||
/**
|
||||
* Return whether this node includes the character at the position of the given line and column.
|
||||
* Returns undefined if the nodes lack sufficient source metadata to determine the position.
|
||||
* @param line 1-index based line number relative to the start of the selector.
|
||||
* @param column 1-index based column number relative to the start of the selector.
|
||||
*/
|
||||
isAtPosition(line: number, column: number): boolean | undefined;
|
||||
/**
|
||||
* Some non-standard syntax doesn't follow normal escaping rules for css,
|
||||
* this allows the escaped value to be specified directly, allowing illegal characters to be
|
||||
* directly inserted into css output.
|
||||
* @param name the property to set
|
||||
* @param value the unescaped value of the property
|
||||
* @param valueEscaped optional. the escaped value of the property.
|
||||
*/
|
||||
setPropertyAndEscape(name: string, value: any, valueEscaped: string): void;
|
||||
/**
|
||||
* When you want a value to passed through to CSS directly. This method
|
||||
* deletes the corresponding raw value causing the stringifier to fallback
|
||||
* to the unescaped value.
|
||||
* @param name the property to set.
|
||||
* @param value The value that is both escaped and unescaped.
|
||||
*/
|
||||
setPropertyWithoutEscape(name: string, value: any): void;
|
||||
/**
|
||||
* Some non-standard syntax doesn't follow normal escaping rules for css.
|
||||
* This allows non standard syntax to be appended to an existing property
|
||||
* by specifying the escaped value. By specifying the escaped value,
|
||||
* illegal characters are allowed to be directly inserted into css output.
|
||||
* @param {string} name the property to set
|
||||
* @param {any} value the unescaped value of the property
|
||||
* @param {string} valueEscaped optional. the escaped value of the property.
|
||||
*/
|
||||
appendToPropertyAndEscape(name: string, value: any, valueEscaped: string): void;
|
||||
toString(): string;
|
||||
}
|
||||
interface ContainerOptions extends NodeOptions {
|
||||
nodes?: Array<Node>;
|
||||
}
|
||||
interface Container<Value extends string | undefined = string> extends Base<Value> {
|
||||
nodes: Array<Node>;
|
||||
append(selector: Selector): Container;
|
||||
prepend(selector: Selector): Container;
|
||||
at(index: number): Node;
|
||||
/**
|
||||
* Return the most specific node at the line and column number given.
|
||||
* The source location is based on the original parsed location, locations aren't
|
||||
* updated as selector nodes are mutated.
|
||||
*
|
||||
* Note that this location is relative to the location of the first character
|
||||
* of the selector, and not the location of the selector in the overall document
|
||||
* when used in conjunction with postcss.
|
||||
*
|
||||
* If not found, returns undefined.
|
||||
* @param line The line number of the node to find. (1-based index)
|
||||
* @param col The column number of the node to find. (1-based index)
|
||||
*/
|
||||
atPosition(line: number, column: number): Node;
|
||||
index(child: Node): number;
|
||||
readonly first: Node;
|
||||
readonly last: Node;
|
||||
readonly length: number;
|
||||
removeChild(child: Node): Container;
|
||||
removeAll(): Container;
|
||||
empty(): Container;
|
||||
insertAfter(oldNode: Node, newNode: Node): Container;
|
||||
insertBefore(oldNode: Node, newNode: Node): Container;
|
||||
each(callback: (node: Node) => boolean | void): boolean | undefined;
|
||||
walk(callback: (node: Node) => boolean | void): boolean | undefined;
|
||||
walkAttributes(callback: (node: Node) => boolean | void): boolean | undefined;
|
||||
walkClasses(callback: (node: Node) => boolean | void): boolean | undefined;
|
||||
walkCombinators(callback: (node: Node) => boolean | void): boolean | undefined;
|
||||
walkComments(callback: (node: Node) => boolean | void): boolean | undefined;
|
||||
walkIds(callback: (node: Node) => boolean | void): boolean | undefined;
|
||||
walkNesting(callback: (node: Node) => boolean | void): boolean | undefined;
|
||||
walkPseudos(callback: (node: Node) => boolean | void): boolean | undefined;
|
||||
walkTags(callback: (node: Node) => boolean | void): boolean | undefined;
|
||||
split(callback: (node: Node) => boolean): [Node[], Node[]];
|
||||
map(callback: (node: Node) => Node): Node[];
|
||||
reduce<T>(callback: (node: Node) => Node, memo: T): T;
|
||||
every(callback: (node: Node) => boolean): boolean;
|
||||
some(callback: (node: Node) => boolean): boolean;
|
||||
filter(callback: (node: Node) => boolean): Node[];
|
||||
sort(callback: (nodeA: Node, nodeB: Node) => number): Node[];
|
||||
toString(): string;
|
||||
}
|
||||
function isContainer(node: any): node is Root | Selector | Pseudo;
|
||||
|
||||
interface NamespaceOptions<Value extends string | undefined = string> extends NodeOptions<Value> {
|
||||
namespace?: string | true;
|
||||
}
|
||||
interface Namespace<Value extends string | undefined = string> extends Base<Value> {
|
||||
/** alias for namespace */
|
||||
ns: string | true;
|
||||
/**
|
||||
* namespace prefix.
|
||||
*/
|
||||
namespace: string | true;
|
||||
/**
|
||||
* If a namespace exists, prefix the value provided with it, separated by |.
|
||||
*/
|
||||
qualifiedName(value: string): string;
|
||||
/**
|
||||
* A string representing the namespace suitable for output.
|
||||
*/
|
||||
readonly namespaceString: string;
|
||||
}
|
||||
function isNamespace(node: any): node is Attribute | Tag;
|
||||
|
||||
interface Root extends Container<undefined> {
|
||||
type: "root";
|
||||
/**
|
||||
* Raises an error, if the processor is invoked on
|
||||
* a postcss Rule node, a better error message is raised.
|
||||
*/
|
||||
error(message: string, options?: ErrorOptions): Error;
|
||||
nodeAt(line: number, column: number): Node
|
||||
}
|
||||
function root(opts: ContainerOptions): Root;
|
||||
function isRoot(node: any): node is Root;
|
||||
|
||||
interface Selector extends Container {
|
||||
type: "selector";
|
||||
}
|
||||
function selector(opts: ContainerOptions): Selector;
|
||||
function isSelector(node: any): node is Selector;
|
||||
|
||||
interface Combinator extends Base {
|
||||
type: "combinator"
|
||||
}
|
||||
function combinator(opts: NodeOptions): Combinator;
|
||||
function isCombinator(node: any): node is Combinator;
|
||||
|
||||
interface ClassName extends Base {
|
||||
type: "class";
|
||||
}
|
||||
function className(opts: NamespaceOptions): ClassName;
|
||||
function isClassName(node: any): node is ClassName;
|
||||
|
||||
type AttributeOperator = "=" | "~=" | "|=" | "^=" | "$=" | "*=";
|
||||
type QuoteMark = '"' | "'" | null;
|
||||
interface PreferredQuoteMarkOptions {
|
||||
quoteMark?: QuoteMark;
|
||||
preferCurrentQuoteMark?: boolean;
|
||||
}
|
||||
interface SmartQuoteMarkOptions extends PreferredQuoteMarkOptions {
|
||||
smart?: boolean;
|
||||
}
|
||||
interface AttributeOptions extends NamespaceOptions<string | undefined> {
|
||||
attribute: string;
|
||||
operator?: AttributeOperator;
|
||||
insensitive?: boolean;
|
||||
quoteMark?: QuoteMark;
|
||||
/** @deprecated Use quoteMark instead. */
|
||||
quoted?: boolean;
|
||||
spaces?: {
|
||||
before?: string;
|
||||
after?: string;
|
||||
attribute?: Partial<SpaceAround>;
|
||||
operator?: Partial<SpaceAround>;
|
||||
value?: Partial<SpaceAround>;
|
||||
insensitive?: Partial<SpaceAround>;
|
||||
}
|
||||
raws: {
|
||||
unquoted?: string;
|
||||
attribute?: string;
|
||||
operator?: string;
|
||||
value?: string;
|
||||
insensitive?: string;
|
||||
spaces?: {
|
||||
attribute?: Partial<Spaces>;
|
||||
operator?: Partial<Spaces>;
|
||||
value?: Partial<Spaces>;
|
||||
insensitive?: Partial<Spaces>;
|
||||
}
|
||||
};
|
||||
}
|
||||
interface Attribute extends Namespace<string | undefined> {
|
||||
type: "attribute";
|
||||
attribute: string;
|
||||
operator?: AttributeOperator;
|
||||
insensitive?: boolean;
|
||||
quoteMark: QuoteMark;
|
||||
quoted?: boolean;
|
||||
spaces: {
|
||||
before: string;
|
||||
after: string;
|
||||
attribute?: Partial<Spaces>;
|
||||
operator?: Partial<Spaces>;
|
||||
value?: Partial<Spaces>;
|
||||
insensitive?: Partial<Spaces>;
|
||||
}
|
||||
raws: {
|
||||
/** @deprecated The attribute value is unquoted, use that instead.. */
|
||||
unquoted?: string;
|
||||
attribute?: string;
|
||||
operator?: string;
|
||||
/** The value of the attribute with quotes and escapes. */
|
||||
value?: string;
|
||||
insensitive?: string;
|
||||
spaces?: {
|
||||
attribute?: Partial<Spaces>;
|
||||
operator?: Partial<Spaces>;
|
||||
value?: Partial<Spaces>;
|
||||
insensitive?: Partial<Spaces>;
|
||||
}
|
||||
};
|
||||
/**
|
||||
* The attribute name after having been qualified with a namespace.
|
||||
*/
|
||||
readonly qualifiedAttribute: string;
|
||||
|
||||
/**
|
||||
* The case insensitivity flag or an empty string depending on whether this
|
||||
* attribute is case insensitive.
|
||||
*/
|
||||
readonly insensitiveFlag : 'i' | '';
|
||||
|
||||
/**
|
||||
* Returns the attribute's value quoted such that it would be legal to use
|
||||
* in the value of a css file. The original value's quotation setting
|
||||
* used for stringification is left unchanged. See `setValue(value, options)`
|
||||
* if you want to control the quote settings of a new value for the attribute or
|
||||
* `set quoteMark(mark)` if you want to change the quote settings of the current
|
||||
* value.
|
||||
*
|
||||
* You can also change the quotation used for the current value by setting quoteMark.
|
||||
**/
|
||||
getQuotedValue(options?: SmartQuoteMarkOptions): string;
|
||||
|
||||
/**
|
||||
* Set the unescaped value with the specified quotation options. The value
|
||||
* provided must not include any wrapping quote marks -- those quotes will
|
||||
* be interpreted as part of the value and escaped accordingly.
|
||||
* @param value
|
||||
*/
|
||||
setValue(value: string, options?: SmartQuoteMarkOptions): void;
|
||||
|
||||
/**
|
||||
* Intelligently select a quoteMark value based on the value's contents. If
|
||||
* the value is a legal CSS ident, it will not be quoted. Otherwise a quote
|
||||
* mark will be picked that minimizes the number of escapes.
|
||||
*
|
||||
* If there's no clear winner, the quote mark from these options is used,
|
||||
* then the source quote mark (this is inverted if `preferCurrentQuoteMark` is
|
||||
* true). If the quoteMark is unspecified, a double quote is used.
|
||||
**/
|
||||
smartQuoteMark(options: PreferredQuoteMarkOptions): QuoteMark;
|
||||
|
||||
/**
|
||||
* Selects the preferred quote mark based on the options and the current quote mark value.
|
||||
* If you want the quote mark to depend on the attribute value, call `smartQuoteMark(opts)`
|
||||
* instead.
|
||||
*/
|
||||
preferredQuoteMark(options: PreferredQuoteMarkOptions): QuoteMark
|
||||
|
||||
/**
|
||||
* returns the offset of the attribute part specified relative to the
|
||||
* start of the node of the output string.
|
||||
*
|
||||
* * "ns" - alias for "namespace"
|
||||
* * "namespace" - the namespace if it exists.
|
||||
* * "attribute" - the attribute name
|
||||
* * "attributeNS" - the start of the attribute or its namespace
|
||||
* * "operator" - the match operator of the attribute
|
||||
* * "value" - The value (string or identifier)
|
||||
* * "insensitive" - the case insensitivity flag;
|
||||
* @param part One of the possible values inside an attribute.
|
||||
* @returns -1 if the name is invalid or the value doesn't exist in this attribute.
|
||||
*/
|
||||
offsetOf(part: "ns" | "namespace" | "attribute" | "attributeNS" | "operator" | "value" | "insensitive"): number;
|
||||
}
|
||||
function attribute(opts: AttributeOptions): Attribute;
|
||||
function isAttribute(node: any): node is Attribute;
|
||||
|
||||
interface Pseudo extends Container {
|
||||
type: "pseudo";
|
||||
}
|
||||
function pseudo(opts: ContainerOptions): Pseudo;
|
||||
/**
|
||||
* Checks wether the node is the Psuedo subtype of node.
|
||||
*/
|
||||
function isPseudo(node: any): node is Pseudo;
|
||||
|
||||
/**
|
||||
* Checks wether the node is, specifically, a pseudo element instead of
|
||||
* pseudo class.
|
||||
*/
|
||||
function isPseudoElement(node: any): node is Pseudo;
|
||||
|
||||
/**
|
||||
* Checks wether the node is, specifically, a pseudo class instead of
|
||||
* pseudo element.
|
||||
*/
|
||||
function isPseudoClass(node: any): node is Pseudo;
|
||||
|
||||
|
||||
interface Tag extends Namespace {
|
||||
type: "tag";
|
||||
}
|
||||
function tag(opts: NamespaceOptions): Tag;
|
||||
function isTag(node: any): node is Tag;
|
||||
|
||||
interface Comment extends Base {
|
||||
type: "comment";
|
||||
}
|
||||
function comment(opts: NodeOptions): Comment;
|
||||
function isComment(node: any): node is Comment;
|
||||
|
||||
interface Identifier extends Base {
|
||||
type: "id";
|
||||
}
|
||||
function id(opts: any): any;
|
||||
function isIdentifier(node: any): node is Identifier;
|
||||
|
||||
interface Nesting extends Base {
|
||||
type: "nesting";
|
||||
}
|
||||
function nesting(opts: any): any;
|
||||
function isNesting(node: any): node is Nesting;
|
||||
|
||||
interface String extends Base {
|
||||
type: "string";
|
||||
}
|
||||
function string(opts: NodeOptions): String;
|
||||
function isString(node: any): node is String;
|
||||
|
||||
interface Universal extends Base {
|
||||
type: "universal";
|
||||
}
|
||||
function universal(opts?: NamespaceOptions): any;
|
||||
function isUniversal(node: any): node is Universal;
|
||||
}
|
||||
68
BACK_BACK/node_modules/uncss/package.json
generated
vendored
Executable file
68
BACK_BACK/node_modules/uncss/package.json
generated
vendored
Executable file
|
|
@ -0,0 +1,68 @@
|
|||
{
|
||||
"name": "uncss",
|
||||
"version": "0.17.3",
|
||||
"author": "Giakki",
|
||||
"description": "Remove unused CSS styles",
|
||||
"license": "MIT",
|
||||
"homepage": "https://github.com/uncss/uncss",
|
||||
"scripts": {
|
||||
"cover": "nyc npm run mocha",
|
||||
"coveralls": "nyc report --reporter=text-lcov | coveralls",
|
||||
"eslint": "eslint \"**/*.js\" bin/uncss",
|
||||
"mocha": "mocha tests/*.js --reporter spec --slow 7500 --timeout 25000",
|
||||
"lint": "npm run eslint",
|
||||
"test": "npm run eslint && npm run mocha",
|
||||
"travis": "npm run eslint && npm run cover"
|
||||
},
|
||||
"main": "src/uncss.js",
|
||||
"bin": {
|
||||
"uncss": "bin/uncss"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/uncss/uncss.git"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/uncss/uncss/issues"
|
||||
},
|
||||
"keywords": [
|
||||
"optimize",
|
||||
"optimise",
|
||||
"unused",
|
||||
"rules",
|
||||
"selector",
|
||||
"CSS",
|
||||
"HTML"
|
||||
],
|
||||
"files": [
|
||||
"bin",
|
||||
"src"
|
||||
],
|
||||
"dependencies": {
|
||||
"commander": "^2.20.0",
|
||||
"glob": "^7.1.4",
|
||||
"is-absolute-url": "^3.0.1",
|
||||
"is-html": "^1.1.0",
|
||||
"jsdom": "^14.1.0",
|
||||
"lodash": "^4.17.15",
|
||||
"postcss": "^7.0.17",
|
||||
"postcss-selector-parser": "6.0.2",
|
||||
"request": "^2.88.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"chai": "^4.2.0",
|
||||
"chai-resemble": "^1.2.0",
|
||||
"coveralls": "^3.0.6",
|
||||
"eslint": "^5.16.0",
|
||||
"mocha": "^6.2.0",
|
||||
"nyc": "^14.1.1"
|
||||
},
|
||||
"engines": {
|
||||
"node": ">=6.0"
|
||||
},
|
||||
"nyc": {
|
||||
"include": [
|
||||
"src/**/*.js"
|
||||
]
|
||||
}
|
||||
}
|
||||
173
BACK_BACK/node_modules/uncss/src/jsdom.js
generated
vendored
Executable file
173
BACK_BACK/node_modules/uncss/src/jsdom.js
generated
vendored
Executable file
|
|
@ -0,0 +1,173 @@
|
|||
'use strict';
|
||||
|
||||
const fs = require('fs'),
|
||||
isHTML = require('is-html'),
|
||||
isURL = require('is-absolute-url'),
|
||||
{ JSDOM, ResourceLoader, VirtualConsole } = require('jsdom'),
|
||||
path = require('path'),
|
||||
{ Console } = require('console'),
|
||||
_ = require('lodash');
|
||||
|
||||
/**
|
||||
* Jsdom expects promises returned by ResourceLoader.fetch to have an 'abort' method.
|
||||
* @param {Promise} promise The promise to augment.
|
||||
*/
|
||||
function makeResourcePromise(promise) {
|
||||
promise.abort = () => { /* noop */ };
|
||||
|
||||
return promise;
|
||||
}
|
||||
|
||||
class CustomResourcesLoader extends ResourceLoader {
|
||||
constructor(htmlroot, strictSSL, userAgent) {
|
||||
super({
|
||||
strictSSL,
|
||||
userAgent
|
||||
});
|
||||
|
||||
// The htmlroot option allows root-relative URLs (starting with a slash)
|
||||
// to be used for all resources. Without it, root-relative URLs are
|
||||
// looked up relative to file://, so will not be found.
|
||||
this.htmlroot = htmlroot || '';
|
||||
}
|
||||
|
||||
fetch(originalUrl, options) {
|
||||
const element = options && options.element;
|
||||
if (!element) {
|
||||
// HTTP request?
|
||||
return super.fetch(originalUrl, options);
|
||||
}
|
||||
|
||||
if (!element || element.nodeName !== 'SCRIPT') {
|
||||
// Only scripts need to be fetched. Stylesheets are read later by uncss.
|
||||
return makeResourcePromise(Promise.resolve(Buffer.from('')));
|
||||
}
|
||||
|
||||
// See whether raw attribute value is root-relative.
|
||||
const src = element.getAttribute('src');
|
||||
if (src && path.isAbsolute(src)) {
|
||||
const url = path.join(this.htmlroot, src);
|
||||
|
||||
return makeResourcePromise(new Promise((resolve, reject) => {
|
||||
try {
|
||||
const buffer = fs.readFileSync(url);
|
||||
|
||||
resolve(buffer);
|
||||
} catch (e) {
|
||||
reject(e);
|
||||
}
|
||||
}));
|
||||
}
|
||||
|
||||
return super.fetch(originalUrl, options);
|
||||
}
|
||||
}
|
||||
|
||||
function defaultOptions() {
|
||||
return {
|
||||
features: {
|
||||
FetchExternalResources: ['script'],
|
||||
ProcessExternalResources: ['script']
|
||||
},
|
||||
runScripts: 'dangerously',
|
||||
userAgent: 'uncss',
|
||||
virtualConsole: new VirtualConsole().sendTo(new Console(process.stderr))
|
||||
};
|
||||
}
|
||||
|
||||
/**
|
||||
* Load a page.
|
||||
* @param {String} src
|
||||
* @param {Object} options
|
||||
* @return {Promise<JSDOM>}
|
||||
*/
|
||||
function fromSource(src, options) {
|
||||
const config = _.cloneDeep(options.jsdom);
|
||||
|
||||
config.resources = new CustomResourcesLoader(options.htmlroot, options.strictSSL, options.userAgent);
|
||||
|
||||
return new Promise((resolve, reject) => {
|
||||
let pagePromise;
|
||||
if (isURL(src)) {
|
||||
pagePromise = JSDOM.fromURL(src, config);
|
||||
} else if (isHTML(src)) {
|
||||
pagePromise = Promise.resolve(new JSDOM(src, config));
|
||||
} else {
|
||||
pagePromise = JSDOM.fromFile(src, config);
|
||||
}
|
||||
|
||||
return pagePromise.then((page) => {
|
||||
if (options.inject) {
|
||||
if (typeof options.inject === 'function') {
|
||||
options.inject(page.window);
|
||||
} else {
|
||||
require(path.join(__dirname, options.inject))(page.window);
|
||||
}
|
||||
}
|
||||
|
||||
setTimeout(() => resolve(page), options.timeout);
|
||||
}).catch((e) => {
|
||||
reject(e);
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Extract stylesheets' hrefs from dom
|
||||
* @param {Object} window A jsdom window
|
||||
* @param {Object} options Options, as passed to UnCSS
|
||||
* @return {Array}
|
||||
*/
|
||||
function getStylesheets(window, options) {
|
||||
if (Array.isArray(options.media) === false) {
|
||||
options.media = [options.media];
|
||||
}
|
||||
|
||||
const media = _.union(['', 'all', 'screen'], options.media);
|
||||
const elements = window.document.querySelectorAll('link[rel="stylesheet"]');
|
||||
|
||||
return Array.prototype.map
|
||||
.call(elements, (link) => ({
|
||||
href: link.getAttribute('href'),
|
||||
media: link.getAttribute('media') || ''
|
||||
}))
|
||||
.filter((sheet) => media.indexOf(sheet.media) !== -1)
|
||||
.map((sheet) => sheet.href);
|
||||
}
|
||||
|
||||
/**
|
||||
* Filter unused selectors.
|
||||
* @param {Object} window A jsdom window
|
||||
* @param {Array} sels List of selectors to be filtered
|
||||
* @return {Array}
|
||||
*/
|
||||
function findAll(window, sels) {
|
||||
const document = window.document;
|
||||
|
||||
// Unwrap noscript elements.
|
||||
const elements = document.getElementsByTagName('noscript');
|
||||
Array.prototype.forEach.call(elements, (ns) => {
|
||||
const wrapper = document.createElement('div');
|
||||
wrapper.innerHTML = ns.textContent;
|
||||
// Insert each child of the <noscript> as its sibling
|
||||
Array.prototype.forEach.call(wrapper.children, (child) => {
|
||||
ns.parentNode.insertBefore(child, ns);
|
||||
});
|
||||
});
|
||||
|
||||
// Do the filtering.
|
||||
return sels.filter((selector) => {
|
||||
try {
|
||||
return document.querySelector(selector);
|
||||
} catch (e) {
|
||||
return true;
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
defaultOptions,
|
||||
fromSource,
|
||||
findAll,
|
||||
getStylesheets
|
||||
};
|
||||
255
BACK_BACK/node_modules/uncss/src/lib.js
generated
vendored
Executable file
255
BACK_BACK/node_modules/uncss/src/lib.js
generated
vendored
Executable file
|
|
@ -0,0 +1,255 @@
|
|||
'use strict';
|
||||
|
||||
const jsdom = require('./jsdom.js'),
|
||||
postcss = require('postcss'),
|
||||
postcssSelectorParser = require('postcss-selector-parser'),
|
||||
_ = require('lodash');
|
||||
/* Some styles are applied only with user interaction, and therefore its
|
||||
* selectors cannot be used with querySelectorAll.
|
||||
* http://www.w3.org/TR/2001/CR-css3-selectors-20011113/
|
||||
*/
|
||||
const dePseudify = (function () {
|
||||
const ignoredPseudos = [
|
||||
/* link */
|
||||
':link', ':visited',
|
||||
/* user action */
|
||||
':hover', ':active', ':focus', ':focus-within',
|
||||
/* UI element states */
|
||||
':enabled', ':disabled', ':checked', ':indeterminate',
|
||||
/* form validation */
|
||||
':required', ':invalid', ':valid',
|
||||
/* pseudo elements */
|
||||
'::first-line', '::first-letter', '::selection', '::before', '::after',
|
||||
/* pseudo classes */
|
||||
':target',
|
||||
/* CSS2 pseudo elements */
|
||||
':before', ':after',
|
||||
/* Vendor-specific pseudo-elements:
|
||||
* https://developer.mozilla.org/ja/docs/Glossary/Vendor_Prefix
|
||||
*/
|
||||
'::?-(?:moz|ms|webkit|o)-[a-z0-9-]+'
|
||||
],
|
||||
// Actual regex is of the format: /^(:hover|:focus|...)$/i
|
||||
pseudosRegex = new RegExp('^(' + ignoredPseudos.join('|') + ')$', 'i');
|
||||
|
||||
function transform (selectors) {
|
||||
selectors.walkPseudos((selector) => {
|
||||
if (pseudosRegex.test(selector.value)) {
|
||||
selector.remove();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
const processor = postcssSelectorParser(transform);
|
||||
|
||||
return function (selector) {
|
||||
return processor.processSync(selector);
|
||||
};
|
||||
}());
|
||||
|
||||
/**
|
||||
* Private function used in filterUnusedRules.
|
||||
* @param {Array} selectors CSS selectors created by the CSS parser
|
||||
* @param {Array} ignore List of selectors to be ignored
|
||||
* @param {Array} usedSelectors List of Selectors found in the jsdom pages
|
||||
* @return {Array} The selectors matched in the DOMs
|
||||
*/
|
||||
function filterUnusedSelectors(selectors, ignore, usedSelectors) {
|
||||
/* There are some selectors not supported for matching, like
|
||||
* :before, :after
|
||||
* They should be removed only if the parent is not found.
|
||||
* Example: '.clearfix:before' should be removed only if there
|
||||
* is no '.clearfix'
|
||||
*/
|
||||
return selectors.filter((selector) => {
|
||||
selector = dePseudify(selector);
|
||||
/* TODO: process @-rules */
|
||||
if (selector[0] === '@') {
|
||||
return true;
|
||||
}
|
||||
for (let i = 0, len = ignore.length; i < len; ++i) {
|
||||
if (_.isRegExp(ignore[i]) && ignore[i].test(selector)) {
|
||||
return true;
|
||||
}
|
||||
if (/:\w+/.test(ignore[i])) {
|
||||
const ignored = dePseudify(ignore[i]);
|
||||
if (ignored === selector) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
if (ignore[i] === selector) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
return usedSelectors.indexOf(selector) !== -1;
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Filter @keyframes that are not used
|
||||
* @param {Object} css The postcss.Root node
|
||||
* @param {Array} animations
|
||||
* @param {Array} unusedRules
|
||||
* @return {Array}
|
||||
*/
|
||||
function filterKeyframes(css, unusedRules) {
|
||||
const usedAnimations = [];
|
||||
css.walkDecls((decl) => {
|
||||
if (_.endsWith(decl.prop, 'animation-name')) {
|
||||
/* Multiple animations, separated by comma */
|
||||
usedAnimations.push(...postcss.list.comma(decl.value));
|
||||
} else if (_.endsWith(decl.prop, 'animation')) {
|
||||
/* Support multiple animations */
|
||||
postcss.list.comma(decl.value).forEach((anim) => {
|
||||
/* If declared as animation, name can be anywhere in the string; so we include all the properties */
|
||||
usedAnimations.push(...postcss.list.space(anim));
|
||||
});
|
||||
}
|
||||
});
|
||||
const usedAnimationsSet = new Set(usedAnimations);
|
||||
css.walkAtRules(/keyframes$/, (atRule) => {
|
||||
if (!usedAnimationsSet.has(atRule.params)) {
|
||||
unusedRules.push(atRule);
|
||||
atRule.remove();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Filter rules with no selectors remaining
|
||||
* @param {Object} css The postcss.Root node
|
||||
* @return {Array}
|
||||
*/
|
||||
function filterEmptyAtRules(css) {
|
||||
/* Filter media queries with no remaining rules */
|
||||
css.walkAtRules((atRule) => {
|
||||
if (atRule.name === 'media' && atRule.nodes.length === 0) {
|
||||
atRule.remove();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Find which selectors are used in {pages}
|
||||
* @param {Array} page List of jsdom pages
|
||||
* @param {Object} css The postcss.Root node
|
||||
* @return {Promise}
|
||||
*/
|
||||
function getUsedSelectors(page, css) {
|
||||
let usedSelectors = [];
|
||||
css.walkRules((rule) => {
|
||||
usedSelectors = _.concat(usedSelectors, rule.selectors.map(dePseudify));
|
||||
});
|
||||
|
||||
return jsdom.findAll(page.window, usedSelectors);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get all the selectors mentioned in {css}
|
||||
* @param {Object} css The postcss.Root node
|
||||
* @return {Array}
|
||||
*/
|
||||
function getAllSelectors(css) {
|
||||
let selectors = [];
|
||||
css.walkRules((rule) => {
|
||||
selectors = _.concat(selectors, rule.selector);
|
||||
});
|
||||
return selectors;
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove css rules not used in the dom
|
||||
* @param {Array} pages List of jsdom pages
|
||||
* @param {Object} css The postcss.Root node
|
||||
* @param {Array} ignore List of selectors to be ignored
|
||||
* @param {Array} usedSelectors List of selectors that are found in {pages}
|
||||
* @return {Object} A css_parse-compatible stylesheet
|
||||
*/
|
||||
function filterUnusedRules(css, ignore, usedSelectors) {
|
||||
let ignoreNextRule = false,
|
||||
ignoreNextRulesStart = false,
|
||||
unusedRules = [],
|
||||
unusedRuleSelectors,
|
||||
usedRuleSelectors;
|
||||
/* Rule format:
|
||||
* { selectors: [ '...', '...' ],
|
||||
* declarations: [ { property: '...', value: '...' } ]
|
||||
* },.
|
||||
* Two steps: filter the unused selectors for each rule,
|
||||
* filter the rules with no selectors
|
||||
*/
|
||||
ignoreNextRule = false;
|
||||
css.walk((rule) => {
|
||||
if (rule.type === 'comment') {
|
||||
if (/^!?\s?uncss:ignore start\s?$/.test(rule.text)) { // ignore next rules while using comment `/* uncss:ignore start */`
|
||||
ignoreNextRulesStart = true;
|
||||
} else if (/^!?\s?uncss:ignore end\s?$/.test(rule.text)) { // until `/* uncss:ignore end */` was found
|
||||
ignoreNextRulesStart = false;
|
||||
} else if (/^!?\s?uncss:ignore\s?$/.test(rule.text)) { // ignore next rule while using comment `/* uncss:ignore */`
|
||||
ignoreNextRule = true;
|
||||
}
|
||||
} else if (rule.type === 'rule') {
|
||||
if (rule.parent.type === 'atrule' && _.endsWith(rule.parent.name, 'keyframes')) {
|
||||
// Don't remove animation keyframes that have selector names of '30%' or 'to'
|
||||
return;
|
||||
}
|
||||
if (ignoreNextRulesStart) {
|
||||
ignore = ignore.concat(rule.selectors);
|
||||
} else if (ignoreNextRule) {
|
||||
ignoreNextRule = false;
|
||||
ignore = ignore.concat(rule.selectors);
|
||||
}
|
||||
|
||||
usedRuleSelectors = filterUnusedSelectors(
|
||||
rule.selectors,
|
||||
ignore,
|
||||
usedSelectors
|
||||
);
|
||||
unusedRuleSelectors = rule.selectors.filter((selector) => usedRuleSelectors.indexOf(selector) < 0);
|
||||
if (unusedRuleSelectors && unusedRuleSelectors.length) {
|
||||
unusedRules.push({
|
||||
type: 'rule',
|
||||
selectors: unusedRuleSelectors,
|
||||
position: rule.source
|
||||
});
|
||||
}
|
||||
if (usedRuleSelectors.length === 0) {
|
||||
rule.remove();
|
||||
} else {
|
||||
rule.selectors = usedRuleSelectors;
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
/* Filter the @media rules with no rules */
|
||||
filterEmptyAtRules(css);
|
||||
|
||||
/* Filter unused @keyframes */
|
||||
filterKeyframes(css, unusedRules);
|
||||
|
||||
return css;
|
||||
}
|
||||
|
||||
/**
|
||||
* Main exposed function
|
||||
* @param {Array} pages List of jsdom pages
|
||||
* @param {Object} css The postcss.Root node
|
||||
* @param {Array} ignore List of selectors to be ignored
|
||||
* @return {Promise}
|
||||
*/
|
||||
module.exports = function uncss(pages, css, ignore) {
|
||||
return Promise.all(pages.map((page) => getUsedSelectors(page, css)))
|
||||
.then((usedSelectors) => {
|
||||
usedSelectors = _.flatten(usedSelectors);
|
||||
const filteredCss = filterUnusedRules(css, ignore, usedSelectors);
|
||||
const allSelectors = getAllSelectors(css);
|
||||
return [filteredCss, {
|
||||
/* Get the selectors for the report */
|
||||
all: allSelectors,
|
||||
unused: _.difference(allSelectors, usedSelectors),
|
||||
used: usedSelectors
|
||||
}];
|
||||
});
|
||||
};
|
||||
|
||||
module.exports.dePseudify = dePseudify;
|
||||
260
BACK_BACK/node_modules/uncss/src/uncss.js
generated
vendored
Executable file
260
BACK_BACK/node_modules/uncss/src/uncss.js
generated
vendored
Executable file
|
|
@ -0,0 +1,260 @@
|
|||
'use strict';
|
||||
|
||||
const glob = require('glob'),
|
||||
isHTML = require('is-html'),
|
||||
isURL = require('is-absolute-url'),
|
||||
jsdom = require('./jsdom.js'),
|
||||
postcss = require('postcss'),
|
||||
uncss = require('./lib.js'),
|
||||
utility = require('./utility.js'),
|
||||
_ = require('lodash');
|
||||
|
||||
/**
|
||||
* Get the contents of HTML pages through jsdom.
|
||||
* @param {Array} files List of HTML files
|
||||
* @param {Object} options UnCSS options
|
||||
* @return {Array|Promise}
|
||||
*/
|
||||
function getHTML(files, options) {
|
||||
if (_.isString(files)) {
|
||||
files = [files];
|
||||
}
|
||||
|
||||
files = _.flatten(files.map((file) => {
|
||||
if (!isURL(file) && !isHTML(file)) {
|
||||
return glob.sync(file);
|
||||
}
|
||||
return file;
|
||||
}));
|
||||
|
||||
if (!files.length) {
|
||||
return Promise.reject(new Error('UnCSS: no HTML files found'));
|
||||
}
|
||||
|
||||
// Save files for later reference.
|
||||
options.files = files;
|
||||
return Promise.all(files.map((file) => jsdom.fromSource(file, options)));
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the contents of CSS files.
|
||||
* @param {Array} files List of HTML files
|
||||
* @param {Object} options UnCSS options
|
||||
* @param {Array} pages Pages opened by jsdom
|
||||
* @return {Promise}
|
||||
*/
|
||||
function getStylesheets(files, options, pages) {
|
||||
if (options.stylesheets && options.stylesheets.length) {
|
||||
/* Simulate the behavior below */
|
||||
return Promise.resolve([files, options, pages, [options.stylesheets]]);
|
||||
}
|
||||
/* Extract the stylesheets from the HTML */
|
||||
return Promise.all(pages.map((page) => jsdom.getStylesheets(page.window, options)))
|
||||
.then((stylesheets) => [files, options, pages, stylesheets]);
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the contents of CSS files.
|
||||
* @param {Array} files List of HTML files
|
||||
* @param {Object} options UnCSS options
|
||||
* @param {Array} pages Pages opened by jsdom
|
||||
* @param {Array} stylesheets List of CSS files
|
||||
* @return {Array}
|
||||
*/
|
||||
function getCSS([files, options, pages, stylesheets]) {
|
||||
/* Ignore specified stylesheets */
|
||||
if (options.ignoreSheets.length) {
|
||||
stylesheets = stylesheets
|
||||
.map((arr) => {
|
||||
return arr.filter((sheet) => {
|
||||
return _.every(options.ignoreSheets, (ignore) => {
|
||||
if (_.isRegExp(ignore)) {
|
||||
return !ignore.test(sheet);
|
||||
}
|
||||
return sheet !== ignore;
|
||||
});
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
if (_.flatten(stylesheets).length) {
|
||||
/* Only run this if we found links to stylesheets (there may be none...)
|
||||
* files = ['some_file.html', 'some_other_file.html']
|
||||
* stylesheets = [['relative_css_path.css', ...],
|
||||
* ['maybe_a_duplicate.css', ...]]
|
||||
* We need to - make the stylesheets' paths relative to the HTML files,
|
||||
* - flatten the array,
|
||||
* - remove duplicates
|
||||
*/
|
||||
stylesheets =
|
||||
_.chain(stylesheets)
|
||||
.map((sheets, i) => utility.parsePaths(files[i], sheets, options))
|
||||
.flatten()
|
||||
.uniq()
|
||||
.value();
|
||||
} else {
|
||||
/* Reset the array if we didn't find any link tags */
|
||||
stylesheets = [];
|
||||
}
|
||||
return Promise.all([options, pages, utility.readStylesheets(stylesheets, options.banner)]);
|
||||
}
|
||||
|
||||
/**
|
||||
* Do the actual work
|
||||
* @param {Array} files List of HTML files
|
||||
* @param {Object} options UnCSS options
|
||||
* @param {Array} pages Pages opened by jsdom
|
||||
* @param {Array} stylesheets List of CSS files
|
||||
* @return {Promise}
|
||||
*/
|
||||
function processWithTextApi([options, pages, stylesheets]) {
|
||||
/* If we specified a raw string of CSS, add it to the stylesheets array */
|
||||
if (options.raw) {
|
||||
if (_.isString(options.raw)) {
|
||||
stylesheets.push(options.raw);
|
||||
} else {
|
||||
throw new Error('UnCSS: options.raw - expected a string');
|
||||
}
|
||||
}
|
||||
|
||||
/* At this point, there isn't any point in running the rest of the task if:
|
||||
* - We didn't specify any stylesheet links in the options object
|
||||
* - We couldn't find any stylesheet links in the HTML itself
|
||||
* - We weren't passed a string of raw CSS in addition to, or to replace
|
||||
* either of the above
|
||||
*/
|
||||
if (!_.flatten(stylesheets).length) {
|
||||
throw new Error('UnCSS: no stylesheets found');
|
||||
}
|
||||
|
||||
/* OK, so we have some CSS to work with!
|
||||
* Three steps:
|
||||
* - Parse the CSS
|
||||
* - Remove the unused rules
|
||||
* - Return the optimized CSS as a string
|
||||
*/
|
||||
const cssStr = stylesheets.join(' \n');
|
||||
let pcss,
|
||||
report;
|
||||
|
||||
try {
|
||||
pcss = postcss.parse(cssStr);
|
||||
} catch (err) {
|
||||
/* Try and construct a helpful error message */
|
||||
throw utility.parseErrorMessage(err, cssStr);
|
||||
}
|
||||
return uncss(pages, pcss, options.ignore).then(([css, rep]) => {
|
||||
let newCssStr = '';
|
||||
postcss.stringify(css, (result) => {
|
||||
newCssStr += result;
|
||||
});
|
||||
|
||||
if (options.report) {
|
||||
report = {
|
||||
original: cssStr,
|
||||
selectors: rep
|
||||
};
|
||||
}
|
||||
return [newCssStr, report];
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Main exposed function.
|
||||
* Here we check the options and callback, then run the files through jsdom.
|
||||
* @param {Array} files Array of filenames
|
||||
* @param {Object} [options] options
|
||||
* @param {Function} callback(Error, String, Object)
|
||||
*/
|
||||
function init(files, options, callback) {
|
||||
|
||||
if (_.isFunction(options)) {
|
||||
/* There were no options, this argument is actually the callback */
|
||||
callback = options;
|
||||
options = {};
|
||||
} else if (!_.isFunction(callback)) {
|
||||
throw new TypeError('UnCSS: expected a callback');
|
||||
}
|
||||
|
||||
/* Try and read options from the specified uncssrc file */
|
||||
if (options.uncssrc) {
|
||||
try {
|
||||
/* Manually-specified options take precedence over uncssrc options */
|
||||
options = _.merge(utility.parseUncssrc(options.uncssrc), options);
|
||||
} catch (err) {
|
||||
if (err instanceof SyntaxError) {
|
||||
callback(new SyntaxError('UnCSS: uncssrc file is invalid JSON.'));
|
||||
return;
|
||||
}
|
||||
callback(err);
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
/* Assign default values to options, unless specified */
|
||||
options = _.merge({
|
||||
banner: true,
|
||||
csspath: '',
|
||||
html: files,
|
||||
htmlRoot: null,
|
||||
ignore: [],
|
||||
ignoreSheets: [],
|
||||
inject: null,
|
||||
jsdom: jsdom.defaultOptions(),
|
||||
media: [],
|
||||
raw: null,
|
||||
report: false,
|
||||
stylesheets: null,
|
||||
timeout: 0,
|
||||
uncssrc: null,
|
||||
userAgent: 'uncss'
|
||||
}, options);
|
||||
|
||||
process(options).then(([css, report]) => callback(null, css, report), callback);
|
||||
}
|
||||
|
||||
function processAsPostCss(options, pages) {
|
||||
return uncss(pages, options.rawPostCss, options.ignore);
|
||||
}
|
||||
|
||||
function process(opts) {
|
||||
return getHTML(opts.html, opts).then((pages) => {
|
||||
function cleanup (result) {
|
||||
pages.forEach((page) => page.window.close());
|
||||
return result;
|
||||
}
|
||||
|
||||
if (opts.usePostCssInternal) {
|
||||
return processAsPostCss(opts, pages)
|
||||
.then(cleanup);
|
||||
}
|
||||
|
||||
return getStylesheets(opts.files, opts, pages)
|
||||
.then(getCSS)
|
||||
.then(processWithTextApi)
|
||||
.then(cleanup);
|
||||
});
|
||||
}
|
||||
|
||||
const postcssPlugin = postcss.plugin('uncss', (opts) => {
|
||||
let options = _.merge({
|
||||
usePostCssInternal: true,
|
||||
// Ignore stylesheets in the HTML files; only use those from the stream
|
||||
ignoreSheets: [/\s*/],
|
||||
html: [],
|
||||
ignore: [],
|
||||
jsdom: jsdom.defaultOptions()
|
||||
}, opts);
|
||||
|
||||
return function (css, result) { // eslint-disable-line no-unused-vars
|
||||
options = _.merge(options, {
|
||||
// This is used to pass the css object in to processAsPostCSS
|
||||
rawPostCss: css
|
||||
});
|
||||
|
||||
return process(options);
|
||||
};
|
||||
});
|
||||
|
||||
module.exports = init;
|
||||
module.exports.postcssPlugin = postcssPlugin;
|
||||
205
BACK_BACK/node_modules/uncss/src/utility.js
generated
vendored
Executable file
205
BACK_BACK/node_modules/uncss/src/utility.js
generated
vendored
Executable file
|
|
@ -0,0 +1,205 @@
|
|||
'use strict';
|
||||
|
||||
const isHTML = require('is-html'),
|
||||
isURL = require('is-absolute-url'),
|
||||
request = require('request'),
|
||||
fs = require('fs'),
|
||||
os = require('os'),
|
||||
path = require('path'),
|
||||
url = require('url');
|
||||
|
||||
function isWindows() {
|
||||
return os.platform() === 'win32';
|
||||
}
|
||||
|
||||
/**
|
||||
* Check if the supplied string might be a RegExp and, if so, return the corresponding RegExp.
|
||||
* @param {String} str The regex to transform.
|
||||
* @return {RegExp|String} The final RegExp
|
||||
*/
|
||||
function strToRegExp(str) {
|
||||
if (str[0] === '/') {
|
||||
return new RegExp(str.replace(/^\/|\/$/g, ''));
|
||||
}
|
||||
return str;
|
||||
}
|
||||
|
||||
/**
|
||||
* Parse a given uncssrc file.
|
||||
* @param {String} filename The location of the uncssrc file
|
||||
* @return {Object} The options object
|
||||
*/
|
||||
function parseUncssrc(filename) {
|
||||
let options = JSON.parse(fs.readFileSync(filename, 'utf-8'));
|
||||
|
||||
/* RegExps can't be stored as JSON, therefore we need to parse them manually.
|
||||
* A string is a RegExp if it starts with '/', since that wouldn't be a valid CSS selector.
|
||||
*/
|
||||
options.ignore = options.ignore ? options.ignore.map(strToRegExp) : undefined;
|
||||
options.ignoreSheets = options.ignoreSheets ? options.ignoreSheets.map(strToRegExp) : [];
|
||||
|
||||
return options;
|
||||
}
|
||||
|
||||
/**
|
||||
* Parse paths relatives to a source.
|
||||
* @param {String} source Where the paths originate from
|
||||
* @param {Array} stylesheets List of paths
|
||||
* @param {Object} options Options, as passed to UnCSS
|
||||
* @return {Array} List of paths
|
||||
*/
|
||||
function parsePaths(source, stylesheets, options) {
|
||||
return stylesheets.map((sheet) => {
|
||||
let sourceProtocol;
|
||||
const isLocalFile = sheet.substr(0, 5) === 'file:';
|
||||
|
||||
if (sheet.substr(0, 4) === 'http') {
|
||||
/* No need to parse, it's already a valid path */
|
||||
return sheet;
|
||||
}
|
||||
|
||||
/* Check if we are fetching over http(s) */
|
||||
if (isURL(source) && !isLocalFile) {
|
||||
sourceProtocol = url.parse(source).protocol;
|
||||
|
||||
if (sheet.substr(0, 2) === '//') {
|
||||
/* Use the same protocol we used for fetching this page.
|
||||
* Default to http.
|
||||
*/
|
||||
return sourceProtocol ? sourceProtocol + sheet : 'http:' + sheet;
|
||||
}
|
||||
return url.resolve(source, sheet);
|
||||
}
|
||||
|
||||
/* We are fetching local files
|
||||
* Should probably report an error if we find an absolute path and
|
||||
* have no htmlroot specified.
|
||||
*/
|
||||
/* Fix the case when there is a query string or hash */
|
||||
sheet = sheet.split('?')[0].split('#')[0];
|
||||
|
||||
/* Path already parsed by jsdom or user supplied local file */
|
||||
if (isLocalFile) {
|
||||
sheet = url.parse(sheet).path.replace('%20', ' ');
|
||||
/* If on windows, remove first '/' */
|
||||
sheet = isWindows() ? sheet.substring(1) : sheet;
|
||||
|
||||
if (options.htmlroot) {
|
||||
return path.join(options.htmlroot, sheet);
|
||||
}
|
||||
sheet = path.relative(path.join(path.dirname(source)), sheet);
|
||||
}
|
||||
|
||||
if (sheet[0] === '/' && options.htmlroot) {
|
||||
return path.join(options.htmlroot, sheet);
|
||||
} else if (isHTML(source)) {
|
||||
return path.join(options.csspath, sheet);
|
||||
}
|
||||
return path.join(path.dirname(source), options.csspath, sheet);
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Given an UTF8 string, return a version of this string without the first byte if it corresponds
|
||||
* to the Byte Order Mark
|
||||
* @param {String} utf8String the string to strip
|
||||
* @return {String}
|
||||
*/
|
||||
function stripBom(utf8String) {
|
||||
if (utf8String.charCodeAt(0) === 0xFEFF) {
|
||||
return utf8String.substr(1);
|
||||
}
|
||||
return utf8String;
|
||||
}
|
||||
|
||||
/**
|
||||
* Given an array of filenames, return an array of the files' contents,
|
||||
* only if the filename matches a regex
|
||||
* @param {Array} files An array of the filenames to read
|
||||
* @return {Promise}
|
||||
*/
|
||||
function readStylesheets(files, outputBanner) {
|
||||
return Promise.all(files.map((filename) => {
|
||||
if (isURL(filename)) {
|
||||
return new Promise((resolve, reject) => {
|
||||
request({
|
||||
url: filename,
|
||||
headers: { 'User-Agent': 'UnCSS' }
|
||||
}, (err, response, body) => {
|
||||
if (err) {
|
||||
return reject(err);
|
||||
}
|
||||
return resolve(body);
|
||||
});
|
||||
});
|
||||
} else if (fs.existsSync(filename)) {
|
||||
return new Promise((resolve, reject) => {
|
||||
fs.readFile(filename, 'utf-8', (err, contents) => {
|
||||
if (err) {
|
||||
return reject(err);
|
||||
}
|
||||
return resolve(stripBom(contents));
|
||||
});
|
||||
});
|
||||
}
|
||||
throw new Error(`UnCSS: could not open ${path.join(process.cwd(), filename)}`);
|
||||
})).then((res) => {
|
||||
// res is an array of the content of each file in files (in the same order)
|
||||
if (outputBanner) {
|
||||
for (let i = 0, len = files.length; i < len; i++) {
|
||||
// We append a small banner to keep track of which file we are currently processing
|
||||
// super helpful for debugging
|
||||
const banner = `/*** uncss> filename: ${files[i].replace(/\\/g, '/')} ***/\n`;
|
||||
res[i] = banner + res[i];
|
||||
}
|
||||
}
|
||||
return res;
|
||||
});
|
||||
}
|
||||
|
||||
function parseErrorMessage(error, cssStr) {
|
||||
/* TODO: FIXME */
|
||||
/* Base line for conveying the line number in the error message */
|
||||
let zeroLine = 0;
|
||||
|
||||
if (error.line) {
|
||||
const lines = cssStr.split('\n');
|
||||
if (lines.length) {
|
||||
/* We get the filename of the css file that contains the error */
|
||||
let i = error.line - 1;
|
||||
while (i >= 0 && !error.filename) {
|
||||
if (lines[i].substr(0, 21) === '/*** uncss> filename:') {
|
||||
error.filename = lines[i].substring(22, lines[i].length - 4);
|
||||
zeroLine = i;
|
||||
}
|
||||
i--;
|
||||
}
|
||||
for (let j = error.line - 6; j < error.line + 5; j++) {
|
||||
if (j - zeroLine < 0 || j >= lines.length) {
|
||||
continue;
|
||||
}
|
||||
let line = lines[j];
|
||||
/* It could be minified CSS */
|
||||
if (line.length > 120 && error.column) {
|
||||
line = line.substring(error.column - 40, error.column);
|
||||
}
|
||||
error.message += '\n\t' + (j + 1 - zeroLine) + ': ';
|
||||
error.message += j === error.line - 1 ? ' -> ' : ' ';
|
||||
error.message += line;
|
||||
}
|
||||
}
|
||||
}
|
||||
if (zeroLine > 0) {
|
||||
error.message = error.message.replace(/[0-9]+:/, error.line - zeroLine + ':');
|
||||
}
|
||||
error.message = `uncss/node_modules/css: unable to parse ${error.filename}:\n${error.message}\n`;
|
||||
return error;
|
||||
}
|
||||
|
||||
module.exports = {
|
||||
isWindows,
|
||||
parseUncssrc,
|
||||
parseErrorMessage,
|
||||
parsePaths,
|
||||
readStylesheets
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue