aolsenjazz/libsamplerate-js

View on GitHub
src/__mocks__/glue.js

Summary

Maintainability
A
0 mins
Test Coverage
// mock for the real LoadSRC. ignore me
export default function LoadSRC(overrides) {
    return new Promise((resolve, reject) => {
            resolve({
                init: () => {},
                sourceArray: () => {},
                targetArray: () => {},
            });
    });
}