We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a471c7e commit c0d4281Copy full SHA for c0d4281
audio_data_analyzer.js
@@ -0,0 +1,11 @@
1
+var analyzer = function analyzerConstructor() {
2
+
3
+};
4
5
+analyzer.prototype.getValues = function getValuesFunction() {
6
7
8
9
10
11
+module.exports.analyzer = analyzer;
bootstrap.js
@@ -0,0 +1,3 @@
+var audioDataAnalyzer = require('audio_data_analyzer');
+var values = audioDataAnalyzer.getValues();
0 commit comments