https://github.com/bdbch/merge-file-lists
Merges two FileList objects into one
https://github.com/bdbch/merge-file-lists
Last synced: about 1 year ago
JSON representation
Merges two FileList objects into one
- Host: GitHub
- URL: https://github.com/bdbch/merge-file-lists
- Owner: bdbch
- License: mit
- Created: 2020-10-22T09:40:27.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-11-26T08:50:02.000Z (over 3 years ago)
- Last Synced: 2025-03-13T08:59:53.529Z (over 1 year ago)
- Language: TypeScript
- Size: 9.77 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# merge-file-lists
> A helper function that merges two FileList objects into one
## Installation via NPM
```sh
npm install @d2k/merge-file-lists --save
```
## Installation via Yarn
```sh
yarn add @d2k/merge-file-lists
```
## Usage
```js
import mergeFileLists from "@d2k/merge-file-lists";
const newFileList = mergeFileLists(fileListA, fileListB);
```
## Contribution
Please fork this project and send in a PR with an explanory text about what your PR is trying to fix or add. Feel free to open issues.