@bigbinary/neeto-media-recorder 2.6.16 → 2.6.18
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/README.md +1 -0
- package/constants.js +1 -0
- package/constants.js.map +1 -1
- package/core.js +61 -42
- package/core.js.map +1 -1
- package/index.js +1 -1
- package/index.js.map +1 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -638,7 +638,7 @@ var getDeviceInfo = /*#__PURE__*/function () {
|
|
|
638
638
|
}();
|
|
639
639
|
var isMp4Supported = function isMp4Supported() {
|
|
640
640
|
var mimeType = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : getSupportedMimeType();
|
|
641
|
-
return mimeType
|
|
641
|
+
return mimeType.includes(MIME_TYPE$1.mp4);
|
|
642
642
|
};
|
|
643
643
|
|
|
644
644
|
function ownKeys$2(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|