ming_node 2.9.8 → 3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +6 -5
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* By : Minglie
|
|
4
4
|
* QQ: 934031452
|
|
5
5
|
* Date :2021.12.01
|
|
6
|
-
* version :2.9.
|
|
6
|
+
* version :2.9.9
|
|
7
7
|
*/
|
|
8
8
|
var http = require('http');
|
|
9
9
|
var https = require('https');
|
|
@@ -2352,7 +2352,7 @@ privateObj.staticMime = {
|
|
|
2352
2352
|
".axs": "application/olescript",
|
|
2353
2353
|
".bas": "text/plain",
|
|
2354
2354
|
".bcpio": "application/x-bcpio",
|
|
2355
|
-
".bin
|
|
2355
|
+
".bin": "application/octet-stream",
|
|
2356
2356
|
".bld": "application/bld",
|
|
2357
2357
|
".bld2": "application/bld2",
|
|
2358
2358
|
".bmp": "image/bmp",
|
|
@@ -2469,8 +2469,8 @@ privateObj.staticMime = {
|
|
|
2469
2469
|
".jpz": "image/jpeg",
|
|
2470
2470
|
".js": "application/javascript",
|
|
2471
2471
|
".jsx": "application/javascript",
|
|
2472
|
-
".woff":"
|
|
2473
|
-
".woff2":"
|
|
2472
|
+
".woff":"application/x-font-woff",
|
|
2473
|
+
".woff2":"application/x-font-woff",
|
|
2474
2474
|
".jwc": "application/jwc",
|
|
2475
2475
|
".kjx": "application/x-kjx",
|
|
2476
2476
|
".lak": "x-lml/x-lak",
|
|
@@ -2835,7 +2835,8 @@ privateObj.staticMime = {
|
|
|
2835
2835
|
".py": "text/plain",
|
|
2836
2836
|
".redis": "text/plain",
|
|
2837
2837
|
".conf": "text/conf",
|
|
2838
|
-
".sql": "text/sql"
|
|
2838
|
+
".sql": "text/sql",
|
|
2839
|
+
".ejs": "text/plain"
|
|
2839
2840
|
}
|
|
2840
2841
|
|
|
2841
2842
|
M.test = function () {
|
package/package.json
CHANGED