osumodcalculator
Version:
osu! calculator for converting values to DT & HT and other things
12 lines (11 loc) • 366 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var osumodcalc = require("./index");
var speedMult = 1;
var foo = osumodcalc.ARtoms(9.3);
var bar = osumodcalc.msToAR(foo.ms / speedMult);
var baz = osumodcalc.msToAR(foo.ms);
var qux = osumodcalc.calcValuesAlt(1, 9.3, 1, 1, 1, 1, 1);
console.log(bar);
console.log(baz);
console.log(qux);