frontend/.pnpm-store/v3/files/e7/b97d1c9f799daca02728972320b3df9ef40c21a0b7b61180e6e08fe970311e8048208fe088358214aca51986d10b76e23f3d4e6f1f8d75d74497d21b7f38c3

11 lines
283 B
Plaintext

/**
* Escape fieldname following the spec requirements.
*
* See: https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#multipart-form-data
*
* @param name A fieldname to escape
*
* @api private
*/
export declare const escapeName: (name: unknown) => string;