30 lines
679 B
JavaScript
30 lines
679 B
JavaScript
export async function cmd(_) {
|
||
return `
|
||
<pre>
|
||
_____\t\t\tOS: ${navigator.platform}
|
||
.-"" ""-.\t\tLang: ${navigator.language}
|
||
/(/ _ }\`;\`.\t\tTimezone: ${Intl.DateTimeFormat().resolvedOptions().timeZone}
|
||
|\`---'/ \` \`;\\\t\tAgent: ${navigator.userAgent}
|
||
.' (\`._ ; \`:
|
||
: \--' '|\`;,;
|
||
| .---' ; | |
|
||
: ' \`.__.-. / ; ;
|
||
: .----' .' / :
|
||
\`. \`----' .' /
|
||
\`.\`--. __ .- .'
|
||
\`-._ _.-' fsc
|
||
\`""""
|
||
</pre>
|
||
`;
|
||
}
|
||
|
||
export let man = `
|
||
<pre>
|
||
FETCH(1)
|
||
|
||
NAME
|
||
\tfetch – Get information about the browser. This is specific to firefox because
|
||
\tthis addon is specific to firefox.
|
||
</pre>
|
||
`
|