Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.141.199.214
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
node_modules /
postcss /
lib /
Delete
Unzip
Name
Size
Permission
Date
Action
at-rule.d.ts
2.44
KB
-rw-rw-r--
2022-08-30 11:49
at-rule.js
471
B
-rw-rw-r--
2022-08-30 11:49
comment.d.ts
1.34
KB
-rw-rw-r--
2022-08-30 11:49
comment.js
203
B
-rw-rw-r--
2022-08-30 11:49
container.d.ts
12.29
KB
-rw-rw-r--
2022-08-30 11:49
container.js
9.98
KB
-rw-rw-r--
2022-08-30 11:49
css-syntax-error.d.ts
6.08
KB
-rw-rw-r--
2022-08-30 11:49
css-syntax-error.js
2.46
KB
-rw-rw-r--
2022-08-30 11:49
declaration.d.ts
2.99
KB
-rw-rw-r--
2022-08-30 11:49
declaration.js
495
B
-rw-rw-r--
2022-08-30 11:49
document.d.ts
1.49
KB
-rw-rw-r--
2022-08-30 11:49
document.js
654
B
-rw-rw-r--
2022-08-30 11:49
fromJSON.d.ts
107
B
-rw-rw-r--
2022-08-30 11:49
fromJSON.js
1.47
KB
-rw-rw-r--
2022-08-30 11:49
input.d.ts
3.38
KB
-rw-rw-r--
2022-08-30 11:49
input.js
6.04
KB
-rw-rw-r--
2022-08-30 11:49
lazy-result.d.ts
4.52
KB
-rw-rw-r--
2022-08-30 11:49
lazy-result.js
13.24
KB
-rw-rw-r--
2022-08-30 11:49
list.d.ts
1.23
KB
-rw-rw-r--
2022-08-30 11:49
list.js
1.14
KB
-rw-rw-r--
2022-08-30 11:49
map-generator.js
8.58
KB
-rw-rw-r--
2022-08-30 11:49
no-work-result.d.ts
1.29
KB
-rw-rw-r--
2022-08-30 11:49
no-work-result.js
2.49
KB
-rw-rw-r--
2022-08-30 11:49
node.d.ts
12.17
KB
-rw-rw-r--
2022-08-30 11:49
node.js
8.29
KB
-rw-rw-r--
2022-08-30 11:49
parse.d.ts
89
B
-rw-rw-r--
2022-08-30 11:49
parse.js
1.12
KB
-rw-rw-r--
2022-08-30 11:49
parser.js
14.14
KB
-rw-rw-r--
2022-08-30 11:49
postcss.d.ts
11.09
KB
-rw-rw-r--
2022-08-30 11:49
postcss.js
2.72
KB
-rw-rw-r--
2022-08-30 11:49
postcss.mjs
980
B
-rw-rw-r--
2022-08-30 11:49
previous-map.d.ts
1.58
KB
-rw-rw-r--
2022-08-30 11:49
previous-map.js
3.83
KB
-rw-rw-r--
2022-08-30 11:49
processor.d.ts
2.95
KB
-rw-rw-r--
2022-08-30 11:49
processor.js
1.77
KB
-rw-rw-r--
2022-08-30 11:49
result.d.ts
4.02
KB
-rw-rw-r--
2022-08-30 11:49
result.js
745
B
-rw-rw-r--
2022-08-30 11:49
root.d.ts
1.81
KB
-rw-rw-r--
2022-08-30 11:49
root.js
1.18
KB
-rw-rw-r--
2022-08-30 11:49
rule.d.ts
2.34
KB
-rw-rw-r--
2022-08-30 11:49
rule.js
569
B
-rw-rw-r--
2022-08-30 11:49
stringifier.d.ts
1.17
KB
-rw-rw-r--
2022-08-30 11:49
stringifier.js
8.03
KB
-rw-rw-r--
2022-08-30 11:49
stringify.d.ts
107
B
-rw-rw-r--
2022-08-30 11:49
stringify.js
213
B
-rw-rw-r--
2022-08-30 11:49
symbols.js
91
B
-rw-rw-r--
2022-08-30 11:49
terminal-highlight.js
1.37
KB
-rw-rw-r--
2022-08-30 11:49
tokenize.js
6.38
KB
-rw-rw-r--
2022-08-30 11:49
warn-once.js
256
B
-rw-rw-r--
2022-08-30 11:49
warning.d.ts
2.67
KB
-rw-rw-r--
2022-08-30 11:49
warning.js
739
B
-rw-rw-r--
2022-08-30 11:49
Save
Rename
import { ProcessOptions, Plugin, SourceMap, TransformCallback, Root, Document, Node, Warning, WarningOptions } from './postcss.js' import Processor from './processor.js' export interface Message { /** * Message type. */ type: string /** * Source PostCSS plugin name. */ plugin?: string [others: string]: any } export interface ResultOptions extends ProcessOptions { /** * The CSS node that was the source of the warning. */ node?: Node /** * Name of plugin that created this warning. `Result#warn` will fill it * automatically with `Plugin#postcssPlugin` value. */ plugin?: string } /** * Provides the result of the PostCSS transformations. * * A Result instance is returned by `LazyResult#then` * or `Root#toResult` methods. * * ```js * postcss([autoprefixer]).process(css).then(result => { * console.log(result.css) * }) * ``` * * ```js * const result2 = postcss.parse(css).toResult() * ``` */ export default class Result { /** * The Processor instance used for this transformation. * * ```js * for (const plugin of result.processor.plugins) { * if (plugin.postcssPlugin === 'postcss-bad') { * throw 'postcss-good is incompatible with postcss-bad' * } * }) * ``` */ processor: Processor /** * Contains messages from plugins (e.g., warnings or custom messages). * Each message should have type and plugin properties. * * ```js * AtRule: { * import: (atRule, { result }) { * const importedFile = parseImport(atRule) * result.messages.push({ * type: 'dependency', * plugin: 'postcss-import', * file: importedFile, * parent: result.opts.from * }) * } * } * ``` */ messages: Message[] /** * Root node after all transformations. * * ```js * root.toResult().root === root * ``` */ root: Root | Document /** * Options from the `Processor#process` or `Root#toResult` call * that produced this Result instance.] * * ```js * root.toResult(opts).opts === opts * ``` */ opts: ResultOptions /** * A CSS string representing of `Result#root`. * * ```js * postcss.parse('a{}').toResult().css //=> "a{}" * ``` */ css: string /** * An instance of `SourceMapGenerator` class from the `source-map` library, * representing changes to the `Result#root` instance. * * ```js * result.map.toJSON() //=> { version: 3, file: 'a.css', … } * ``` * * ```js * if (result.map) { * fs.writeFileSync(result.opts.to + '.map', result.map.toString()) * } * ``` */ map: SourceMap /** * Last runned PostCSS plugin. */ lastPlugin: Plugin | TransformCallback /** * @param processor Processor used for this transformation. * @param root Root node after all transformations. * @param opts Options from the `Processor#process` or `Root#toResult`. */ constructor(processor: Processor, root: Root | Document, opts: ResultOptions) /** * An alias for the `Result#css` property. * Use it with syntaxes that generate non-CSS output. * * ```js * result.css === result.content * ``` */ get content(): string /** * Returns for `Result#css` content. * * ```js * result + '' === result.css * ``` * * @return String representing of `Result#root`. */ toString(): string /** * Creates an instance of `Warning` and adds it to `Result#messages`. * * ```js * if (decl.important) { * result.warn('Avoid !important', { node: decl, word: '!important' }) * } * ``` * * @param text Warning message. * @param opts Warning options. * @return Created warning. */ warn(message: string, options?: WarningOptions): Warning /** * Returns warnings from plugins. Filters `Warning` instances * from `Result#messages`. * * ```js * result.warnings().forEach(warn => { * console.warn(warn.toString()) * }) * ``` * * @return Warnings from plugins. */ warnings(): Warning[] }