소스 검색

Add README

Include short details on using the library.
master
부모
커밋
c0d6405873
1개의 변경된 파일22개의 추가작업 그리고 0개의 파일을 삭제
  1. +22
    -0
      README.md

+ 22
- 0
README.md 파일 보기

@@ -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.

불러오는 중...
취소
저장