Extract and set form values through the DOM—no frameworks required! https://github.com/TheoryOfNekomata/formxtra
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
TheoryOfNekomata c0d6405873 Add README преди 3 години
cypress Implement cypress преди 3 години
src Organize tests преди 3 години
test Organize tests преди 3 години
.gitignore Initial commit преди 3 години
LICENSE Initial commit преди 3 години
README.md Add README преди 3 години
cypress.json Implement cypress преди 3 години
jest.config.js Implement tests преди 3 години
package.json Implement cypress преди 3 години
tsconfig.json Implement tests преди 3 години
yarn.lock Implement cypress преди 3 години

README.md

get-form-values

Get the value of a form using HTMLFormElement.elements.

Usage

import getFormValues from '@theoryofnekomata/get-form-values';

const form = document.getElementById('form')

// optional, but just in case there are multiple submit buttons in the form,
// individual submitters can be considered
const submitter = form.querySelector('[type="submit"]')

const values = getFormValues(form, submitter)

Tests

The library has been tested on JSDOM through Jest, and the real DOM using Cypress.