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
| import { FetchBaseQueryError } from '@rtk-incubator/rtk-query/dist'; | |
| /** | |
| * Default tags used by the cacher helpers | |
| */ | |
| const defaultTags = ["UNAUTHORIZED", "UNKNOWN_ERROR"] as const; | |
| type DefaultTags = typeof defaultTags[number]; | |
| function concatErrorCache<T, ID>( | |
| existingCache: CacheList<T, ID>, |
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
| Rank | Type | Prefix/Suffix | Length | |
|---|---|---|---|---|
| 1 | Prefix | my+ | 2 | |
| 2 | Suffix | +online | 6 | |
| 3 | Prefix | the+ | 3 | |
| 4 | Suffix | +web | 3 | |
| 5 | Suffix | +media | 5 | |
| 6 | Prefix | web+ | 3 | |
| 7 | Suffix | +world | 5 | |
| 8 | Suffix | +net | 3 | |
| 9 | Prefix | go+ | 2 |
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
| <?xml version="1.0"?> | |
| <root> | |
| <item> | |
| <name>For Topre REALFORCE 87u Users</name> | |
| <devicevendordef> | |
| <vendorname>TopreCorporation</vendorname> | |
| <vendorid>0x0853</vendorid> | |
| </devicevendordef> | |
| <item> | |
| <name>Fix FN + F1..F12 and functional keys</name> |
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
| /*! normalize-all-you-really-need-tho.css v1.0.0 | MIT License */ | |
| html { | |
| font-family: sans-serif; /* 1 */ | |
| -webkit-text-size-adjust: 100%; /* 2 */ | |
| -ms-text-size-adjust: 100%; /* 2 */ | |
| } | |
| body { | |
| margin: 0; |
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 round(n) { | |
| return Math.round(n*100) / 100; | |
| } | |
| // Represents an edge from source to sink with capacity | |
| var Edge = function(source, sink, capacity) { | |
| this.source = source; | |
| this.sink = sink; | |
| this.capacity = capacity; | |
| }; |