6 lines
203 B
TypeScript
6 lines
203 B
TypeScript
/**
|
|
* Keys that must be rejected when traversing object paths (e.g. dot-separated
|
|
* property lookups) to prevent prototype-pollution attacks.
|
|
*/
|
|
export declare const FORBIDDEN_PATH_KEYS: Set<string>;
|