Changeset 0c6b92a for imaps-frontend/node_modules/form-data
- Timestamp:
- 12/12/24 17:06:06 (5 weeks ago)
- Branches:
- main
- Parents:
- d565449
- Location:
- imaps-frontend/node_modules/form-data
- Files:
-
- 1 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
imaps-frontend/node_modules/form-data/Readme.md
rd565449 r0c6b92a 7 7 [xhr2-fd]: http://dev.w3.org/2006/webapi/XMLHttpRequest-2/Overview.html#the-formdata-interface 8 8 9 [![Linux Build](https://img.shields.io/travis/form-data/form-data/ v4.0.0.svg?label=linux:6.x-12.x)](https://travis-ci.org/form-data/form-data)10 [![MacOS Build](https://img.shields.io/travis/form-data/form-data/ v4.0.0.svg?label=macos:6.x-12.x)](https://travis-ci.org/form-data/form-data)11 [![Windows Build](https://img.shields.io/travis/form-data/form-data/ v4.0.0.svg?label=windows:6.x-12.x)](https://travis-ci.org/form-data/form-data)12 13 [![Coverage Status](https://img.shields.io/coveralls/form-data/form-data/ v4.0.0.svg?label=code+coverage)](https://coveralls.io/github/form-data/form-data?branch=master)9 [![Linux Build](https://img.shields.io/travis/form-data/form-data/master.svg?label=linux:6.x-12.x)](https://travis-ci.org/form-data/form-data) 10 [![MacOS Build](https://img.shields.io/travis/form-data/form-data/master.svg?label=macos:6.x-12.x)](https://travis-ci.org/form-data/form-data) 11 [![Windows Build](https://img.shields.io/travis/form-data/form-data/master.svg?label=windows:6.x-12.x)](https://travis-ci.org/form-data/form-data) 12 13 [![Coverage Status](https://img.shields.io/coveralls/form-data/form-data/master.svg?label=code+coverage)](https://coveralls.io/github/form-data/form-data?branch=master) 14 14 [![Dependency Status](https://img.shields.io/david/form-data/form-data.svg)](https://david-dm.org/form-data/form-data) 15 15 -
imaps-frontend/node_modules/form-data/lib/form_data.js
rd565449 r0c6b92a 62 62 63 63 // https://github.com/felixge/node-form-data/issues/38 64 if ( util.isArray(value)) {64 if (Array.isArray(value)) { 65 65 // Please convert your array into string 66 66 // the way web server expects it -
imaps-frontend/node_modules/form-data/package.json
rd565449 r0c6b92a 3 3 "name": "form-data", 4 4 "description": "A library to create readable \"multipart/form-data\" streams. Can be used to submit forms and file uploads to other web applications.", 5 "version": "4.0. 0",5 "version": "4.0.1", 6 6 "repository": { 7 7 "type": "git", … … 12 12 "typings": "./index.d.ts", 13 13 "scripts": { 14 "pretest": "rimraf coverage test/tmp", 15 "test": "istanbul cover test/run.js", 16 "posttest": "istanbul report lcov text", 17 "lint": "eslint lib/*.js test/*.js test/integration/*.js", 14 "pretest": "npm run lint", 15 "pretests-only": "rimraf coverage test/tmp", 16 "tests-only": "istanbul cover test/run.js", 17 "posttests-only": "istanbul report lcov text", 18 "test": "npm run tests-only", 19 "posttest": "npx npm@'>=10.2' audit --production", 20 "lint": "eslint --ext=js,mjs .", 18 21 "report": "istanbul report lcov text", 19 22 "ci-lint": "is-node-modern 8 && npm run lint || is-node-not-modern 8", 20 "ci-test": "npm run test && npm run browser && npm run report",23 "ci-test": "npm run tests-only && npm run browser && npm run report", 21 24 "predebug": "rimraf coverage test/tmp", 22 25 "debug": "verbose=1 ./test/run.js",
Note:
See TracChangeset
for help on using the changeset viewer.