Socket
Socket
Sign inDemoInstall

audio-recorder-polyfill

Package Overview
Dependencies
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

audio-recorder-polyfill - npm Package Compare versions

Comparing version 0.3.1 to 0.3.2

3

CHANGELOG.md
# Change Log
This project adheres to [Semantic Versioning](http://semver.org/).
## 0.3.2
* Fix WAV encoder regression.
## 0.3.1

@@ -5,0 +8,0 @@ * Improve examples in docs.

2

package.json
{
"name": "audio-recorder-polyfill",
"version": "0.3.1",
"version": "0.3.2",
"description": "MediaRecorder polyfill to record audio in Edge and Safari",

@@ -5,0 +5,0 @@ "keywords": [

@@ -59,4 +59,5 @@ // Copied from https://github.com/chris-rudmin/Recorderjs

for (let [i, element] of recorded.entries()) {
wav.set(element, i * bufferLength + 44)
// eslint-disable-next-line unicorn/no-for-loop
for (let i = 0; i < recorded.length; i++) {
wav.set(recorded[i], i * bufferLength + 44)
}

@@ -63,0 +64,0 @@

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc