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.144.132.48
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 /
sass /
types /
Delete
Unzip
Name
Size
Permission
Date
Action
legacy
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
logger
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
util
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
value
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
compile.d.ts
3.94
KB
-rw-rw-r--
2022-08-30 11:49
exception.d.ts
1.09
KB
-rw-rw-r--
2022-08-30 11:49
importer.d.ts
12.12
KB
-rw-rw-r--
2022-08-30 11:49
index.d.ts
1.98
KB
-rw-rw-r--
2022-08-30 11:49
options.d.ts
14.19
KB
-rw-rw-r--
2022-08-30 11:49
Save
Rename
import {SourceSpan} from './logger'; /** * An exception thrown because a Sass compilation failed. * * @category Other */ export class Exception extends Error { private constructor(); /** * A human-friendly representation of the exception. * * Because many tools simply print `Error.message` directly, this includes not * only the textual description of what went wrong (the [[sassMessage]]) but * also an indication of where in the Sass stylesheet the error occurred (the * [[span]]) and the Sass stack trace at the point of error (the * [[sassStack]]). */ message: string; /** * A textual description of what went wrong. * * Unlike [[message]], this does *not* include representations of [[span]] or * [[sassStack]]. */ readonly sassMessage: string; /** * A human-friendly representation of the Sass stack trace at the point of * error. */ readonly sassStack: string; /** The location the error occurred in the Sass file that triggered it. */ readonly span: SourceSpan; /** Returns the same string as [[message]]. */ toString(): string; }