我想让一个Javascript speex库在CSP保护的环境中运行。没有CSP,它运行良好,我已经修复了大多数" eval"问题。然而 - 这个让我头疼:
this.interpolate = Function("buffer", toCompile);
请参阅:https://github.com/grantgalitz/XAudioJS/blob/master/resampler.js
我试过像
这样的东西this.interpolate = function buffer () { return toCompile };
但那并没有奏效。虽然我理解......好的,基本的"功能"与"功能",我找不到工作修复。
感谢任何帮助。
麦克拉