@apocaliss92/nodelink-js 0.4.36 → 0.5.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/dist/index.js CHANGED
@@ -8467,7 +8467,8 @@ function encodeImaAdpcm(pcm, blockSizeBytes) {
8467
8467
  }
8468
8468
 
8469
8469
  // src/reolink/baichuan/utils/audioMulaw.ts
8470
- import { mulaw, alaw } from "alawmulaw";
8470
+ import alawmulaw from "alawmulaw";
8471
+ var { mulaw, alaw } = alawmulaw;
8471
8472
  function mulawToPcm16(bytes) {
8472
8473
  if (bytes.length === 0) return new Int16Array(0);
8473
8474
  return mulaw.decode(bytes);