# formxtr Extract form values through the DOM. ## Installation The package can be found on: - [Modal Pack](https://js.pack.modal.sh) - [npm](https://npmjs.com/package/formxtr) - [GitHub Package Registry](https://github.com/TheoryOfNekomata/formxtr/packages/784699) ## Usage For an example form: ```html
``` Use the library as follows (code is in TypeScript, but can work with JavaScript as well): ```typescript import getFormValues from '@theoryofnekomata/formxtr'; const form: HTMLFormElement = 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"][name="type"][value="client"]'); const values = getFormValues(form, submitter); const processResult = (result: Record