This commit is contained in:
IDONTSUDO 2024-07-03 15:25:51 +03:00
parent 559262db34
commit 50822a031d
65 changed files with 7738 additions and 1412 deletions

View file

@ -34,6 +34,7 @@ declare global {
isNegative(): boolean;
isEven(): boolean;
isOdd(): boolean;
isEqualR(num: number): Result<void, void>;
}
interface String {
@ -45,6 +46,7 @@ declare global {
hasPattern(pattern: string): boolean;
hasNoPattern(pattern: string): boolean;
divideByIndex(index: number): string[];
isEqualR(str: string): Result<void, string>;
}
interface Map<K, V> {