Parcourir la source

Add README

Include short details on using the library.
master
TheoryOfNekomata il y a 3 ans
Parent
révision
c0d6405873
1 fichiers modifiés avec 22 ajouts et 0 suppressions
  1. +22
    -0
      README.md

+ 22
- 0
README.md Voir le fichier

@@ -0,0 +1,22 @@
# get-form-values

Get the value of a form using `HTMLFormElement.elements`.

## Usage

```typescript
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.

Chargement…
Annuler
Enregistrer