1.6.5 • Published 5 years ago

@infoservice/object-to-formdata v1.6.5

Weekly downloads
-
License
MIT
Repository
github
Last release
5 years ago

object-to-formdata

npm npm

object-to-formdata is 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,

  /**
   * whether or not to include null values as empty strings in FormData instance
   * defaults to true
   */
  nulls: true
};

const formData = objectToFormData(
  object,
  options, // optional
  existingFormData, // optional
  keyPrefix // optional
);

console.log(formData);