Skip to content

Commit

Permalink
fix npm usage
Browse files Browse the repository at this point in the history
  • Loading branch information
dlepaux committed Mar 18, 2018
1 parent 2f7338b commit 7c9a8f7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/analyzer.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict';

import utils from "./utils";
var utils = require("./utils.js");



Expand Down
8 changes: 4 additions & 4 deletions src/index.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
'use strict';

import analyzer from "./analyzer";
import utils from "./utils";
var analyzer = require("./analyzer.js");
var utils = require("./utils.js");

/**
* RealTimeBPMAnalyzer Class
*/
var RealTimeBPMAnalyzer = function () {
class RealTimeBPMAnalyzer {


/**
Expand Down Expand Up @@ -44,7 +44,7 @@ var RealTimeBPMAnalyzer = function () {
* Initialize variables and thresolds object's
*/

initClass();
this.initClass();
}


Expand Down

0 comments on commit 7c9a8f7

Please sign in to comment.