New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

audio-slot

Package Overview
Dependencies
Maintainers
1
Versions
61
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

audio-slot - npm Package Compare versions

Comparing version 3.4.0 to 3.5.0

15

modulators/param.js

@@ -34,3 +34,5 @@ var Observ = require('observ')

getValueAt: function(at){
if (currentParam && currentParam.getValueAt){
if (typeof currentParam === 'number') {
return currentParam
} else if (currentParam && currentParam.getValueAt){
return currentParam.getValueAt(at)

@@ -75,3 +77,12 @@ } else {

if (param){
releaseSchedule = param.onSchedule(handleSchedule)
if (param.onSchedule) {
releaseSchedule = param.onSchedule(handleSchedule)
} else if (typeof param === 'function') {
releaseSchedule = param(function(value) {
handleSchedule({
value: value,
at: context.audio.currentTime
})
})
}
}

@@ -78,0 +89,0 @@ }

2

package.json
{
"name": "audio-slot",
"version": "3.4.0",
"version": "3.5.0",
"description": "Web Audio API FRP wrapper for creating, routing, and triggering AudioNodes.",

@@ -5,0 +5,0 @@ "main": "index.js",

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