Package Exports
- object-to-formdata
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (object-to-formdata) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
object-to-formdata
A convenient JavaScript function that converts an object to a FormData instance
const objectToFormData = require('object-to-formdata')
const object = {
/**
* key-value mapping
* values can be primitives or objects
*/
}
const options = {
/**
* whether or not to include array indices in FormData keys
* defaults to false
*/
indices: false
}
const formData = objectToFormData(
object,
options, // optional
existingFormData, // optional
keyPrefix // optional
)
console.log(formData)