13 lines
249 B
Plaintext
13 lines
249 B
Plaintext
/**
|
|
* Generates a boundary string for FormData encoder.
|
|
*
|
|
* @api private
|
|
*
|
|
* ```js
|
|
* import createBoundary from "./util/createBoundary"
|
|
*
|
|
* createBoundary() // -> n2vw38xdagaq6lrv
|
|
* ```
|
|
*/
|
|
export declare function createBoundary(): string;
|