PDPA Features: ✅ Cookie consent banner ✅ Consent logging API ✅ Admin dashboard ✅ Privacy Policy ✅ Terms & Conditions Technical: ✅ Astro 5.x + Tailwind v4 ✅ Docker on port 80 ✅ SQLite database ✅ 15 pages built Ready for Easypanel deployment.
19 lines
470 B
TypeScript
19 lines
470 B
TypeScript
/**
|
|
* Parse space-separated tokens to an array of strings.
|
|
*
|
|
* @param {string} value
|
|
* Space-separated tokens.
|
|
* @returns {Array<string>}
|
|
* List of tokens.
|
|
*/
|
|
export function parse(value: string): Array<string>
|
|
/**
|
|
* Serialize an array of strings as space separated-tokens.
|
|
*
|
|
* @param {Array<string|number>} values
|
|
* List of tokens.
|
|
* @returns {string}
|
|
* Space-separated tokens.
|
|
*/
|
|
export function stringify(values: Array<string | number>): string
|