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
type Brand <T> = T & { readonly type: unique symbol } | |
// type Foo = Brand<number> | |
type Foo = number & { readonly type: unique symbol } | |
type Bar = number & { readonly type: unique symbol } | |
function Foo (n: number): Foo | |
{ | |
return (n as Foo) |
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
[buildPlans.IosevkaCustom] | |
family = "Iosevka Custom" | |
spacing = "term" | |
serifs = "sans" | |
noCvSs = true | |
exportGlyphNames = false | |
[buildPlans.IosevkaCustom.variants.design] | |
capital-i = "short-serifed" | |
capital-j = "serifed-symmetric" |
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
// ISC © 2023, Strider. | |
/* eslint-disable complexity */ | |
const values = Object.values | |
import { useEffect, useRef } from 'react' | |
import { useParams } from 'react-router-dom' | |
import { useLocation } from 'react-router-dom' | |
import { useNavigate } from 'react-router-dom' |
OlderNewer