Skip to content

Commit c0d4281

Browse files
committed
initialization
1 parent a471c7e commit c0d4281

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

audio_data_analyzer.js

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
var audioDataAnalyzer = require('audio_data_analyzer');
2+
3+
var values = audioDataAnalyzer.getValues();

0 commit comments

Comments
 (0)