Socket
Socket
Sign inDemoInstall

formdata-json

Package Overview
Dependencies
0
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    formdata-json

Converts FormData entries to JSON


Version published
Weekly downloads
52
decreased by-34.18%
Maintainers
1
Install size
5.59 kB
Created
Weekly downloads
 

Readme

Source

formdata-json

Converts FormData.entities() to JSON.

Install

npm i formdata-json --save-dev

Usage

/**
* Convert FormData elements to JSON
* @param {FormData} formData An object that is an instance of FormData 
*/

** Example **

const formDataJSON = require('formdata-json')

const formData = new FormData()
formData.set('name', 'James')
formData.set('username', 'JamesTheHacker')

const result = fromDataJSON(formData)

/* Results in: */
{
    name: 'James',
    username: 'JamesTheHacker')
}

Known Issues

  • WIP Does not support nested elements

Keywords

FAQs

Last updated on 20 Aug 2018

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc