This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Types as data from 'graphql/language/ast.d.ts' | |
| */ | |
| import type { ASTNode } from 'graphql/language/ast'; | |
| export interface ASTNodeFieldInfo { | |
| readonly optional?: boolean; | |
| readonly isArray?: boolean; | |
| readonly type: string; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function* cssRulesIterator() { | |
| for(const stylesheet of window.document.styleSheets) { | |
| for (const rule of stylesheet.cssRules) { | |
| yield rule.cssText; | |
| } | |
| } | |
| } | |
| [...cssRulesIterator()].filter(ruleText => true) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* eslint-disable @typescript-eslint/no-redeclare */ | |
| export function isHttpStatusSuccess(code: number): code is HTTP_STATUS_SUCCESS { | |
| return code >= 200 && code < 300; | |
| } | |
| export function isHttpStatusClientError(code: number): code is HTTP_STATUS_CLIENT_ERROR { | |
| return code >= 400 && code < 500; | |
| } | |
| export function isHttpStatusServerError(code: number): code is HTTP_STATUS_SERVER_ERROR { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Co se posralo, kdy, proč, jak předcházet | |
| Co mě sere: neznám všecho a není mi to jedno, učíme se pořád | |
| Kdo co chce, kdo víc křičí, vyhrává, krátkodoě | |
| Prachy, brigáda, (debilní doktorant u zkoušky), co to kurva meleš) . . . Upřímnost | |
| . . . . . . . . <- to je poslední tečka. | |
| A tak doufáš, | |
| že te už bude jiný | |
| doufáš, věříš, podporuješ… |
OlderNewer