![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@degjs/form-mapper
Advanced tools
A utility to take in an element or array of elements and return an object consisting of their values
formMapper is an ES6 module. Consequently, you'll nee an ES6 transpiler (Babel is an option) as part of your Javascript workflow.
If you are already using NPM for your project, you can install formMapper with the following command:
$ npm install @degjs/form-mapper
import { getValues } from "@degjs/form-mapper";
.
.
.
const formData = getValues(formEl);
import formMapper from "@degjs/form-mapper";
.
.
.
const formData = formMapper.getValues(formEl);
The options represent the default selector names for various input elements. Can be replaced with a string of any selectors that querySelectAll
and matches
supports.
Default: input, select, textarea
Example override: .js-input, .js-checkbox-input, select[multiple], textarea
The getValues method returns an object with key value pairs being { inputName: inputValue }
Type: Element | Element[]
The container element, input element or array of elements to get values from.
Type: Object
Default: {elementSelectors: defaultElementSelectors, shouldStringify: false}
An object to override the default settings. shouldStringify
declares if the returned value should be a string representation of an object or just the object.
The getInputElements method returns an array of input elements as found by the default selectors.
Type: Element
The form element to extract inputs from.
Type: String
Default: defaultElementSelectors
And string representing a comma-separated list of selectors to override any default element selectors.
formMapper depends on the following browser APIs:
As of Febrary 2018, matches is supported in IE9 and up.
To support legacy browsers, you'll need to include polyfills for the above APIs.
FAQs
Get the values of form inputs as one collective object
We found that @degjs/form-mapper demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 8 open source maintainers collaborating on the project.
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.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.