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 { html as beautify } from 'js-beautify' | |
type childCallback = (builder: HTMLBuilder) => void | |
declare function manipulate(content: string): void | |
declare function manipulate(content: string, attributes: Record<string, string>): void | |
declare function manipulate(callback: childCallback): void | |
declare function manipulate(callback: childCallback, attributes: Record<string, string>): void | |
class Tag { | |
private name: 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
type PermutationTable = Array<number> | |
type SBox = Array<Array<number>> | |
type CanCastToBigInt = number | bigint | string | BigNumber | |
const CHAR_BITS = 16 | |
const DES_BITS_LIMIT = 64 | |
const BITS_ROTATION_TABLE: Array<number> = [ | |
1, 1, 2, 2, 2, 2, 2, 2, | |
1, 2, 2, 2, 2, 2, 2, 1, |
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
apiVersion: v1 | |
kind: ConfigMap | |
metadata: | |
name: ingress-nginx-config | |
namespace: ingress-nginx | |
labels: | |
app.kubernetes.io/name: ingress-nginx | |
app.kubernetes.io/part-of: ingress-nginx | |
data: | |
enable-real-ip: "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
class Container { | |
static get proxyHandler () { | |
return { | |
get (target, prop) { | |
if (prop in target) { | |
return Reflect.get(...arguments) | |
} | |
return target.resolve(prop) | |
} |