This file contains 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 FileSystem from 'node:fs'; | |
import HTTPS from 'node:https'; | |
import { parse as HTMLParser } from 'node-html-parser'; | |
export default (new class ClientProperties { | |
File = './client.json'; | |
BaseURL = 'https://app.knuddels.de/'; | |
Properties = { | |
build: null, | |
version: null, |
This file contains 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
// Specific the element (for sample "div" or "li") | |
$element: null !default; | |
// Define the Attribute (for sample <div data-ao="YourName">), "ao" is "alphabetical order" | |
$attribute: data-ao !default; | |
// Define the characters (with lower- and uppercase) | |
$characters: ( | |
(a, A), (b, B), (c, C), (d, D), (e, E), (f, F), (g, G), (h, H), (i, I), (j, J), (k, K), (l, L), (m, M), (n, N), (o, O), (p, P), (q, Q), (r, R), (s, S), (t, T), (u, U), (v, V), (w, W), (x, X), (y, Y), (z, Z) | |
); |