nitpicks
This commit is contained in:
parent
ea11dbba01
commit
c282448d5b
12 changed files with 20 additions and 19 deletions
|
@ -1,4 +1,4 @@
|
|||
const reg = /https\:\/\/0x0.st\/[^ ]*/;
|
||||
const reg = /https:\/\/0x0.st\/[^ ]*/;
|
||||
|
||||
export async function read0x0(s: string): Promise<null | string> {
|
||||
const r = s.match(reg);
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
const reg = /https\:\/\/hst.sh\/[\w]*/;
|
||||
const reg = /https:\/\/hst.sh\/[\w]*/;
|
||||
|
||||
export async function readHastebin(s: string): Promise<string | null> {
|
||||
const r = s.match(reg);
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
const reg = /https\:\/\/mclo.gs\/[^ ]*/;
|
||||
const reg = /https:\/\/mclo.gs\/[^ ]*/;
|
||||
|
||||
export async function readMcLogs(s: string): Promise<null | string> {
|
||||
const r = s.match(reg);
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
const reg = /https\:\/\/paste.gg\/p\/[\w]*\/[\w]*/;
|
||||
const reg = /https:\/\/paste.gg\/p\/[\w]*\/[\w]*/;
|
||||
|
||||
export async function readPasteGG(s: string): Promise<null | string> {
|
||||
const r = s.match(reg);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue