Comparing version 2.4.1 to 2.4.2
@@ -5,2 +5,11 @@ # Change Log | ||
## [2.4.2](https://github.com/broofa/node-mime/compare/v2.4.1...v2.4.2) (2019-04-07) | ||
### Bug Fixes | ||
* don't use arrow function introduced in 2.4.1 ([2e00b5c](https://github.com/broofa/node-mime/commit/2e00b5c)) | ||
## [2.4.1](https://github.com/broofa/node-mime/compare/v2.4.0...v2.4.1) (2019-04-03) | ||
@@ -7,0 +16,0 @@ |
@@ -41,3 +41,3 @@ 'use strict'; | ||
for (var type in typeMap) { | ||
var extensions = typeMap[type].map(t => t.toLowerCase()); | ||
var extensions = typeMap[type].map(function(t) {return t.toLowerCase()}); | ||
type = type.toLowerCase(); | ||
@@ -44,0 +44,0 @@ |
@@ -44,3 +44,3 @@ { | ||
}, | ||
"version": "2.4.1" | ||
"version": "2.4.2" | ||
} |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
74360