0.2.0 - Mid migration

This commit is contained in:
Daniel Mason 2022-04-25 14:47:15 +12:00
parent 139e6a915e
commit 7e38fdbd7d
42393 changed files with 5358157 additions and 62 deletions

13
web/node_modules/ext/test/math/ceil-10.js generated vendored Normal file
View file

@ -0,0 +1,13 @@
"use strict";
var assert = require("chai").assert
, ceil10 = require("../../math/ceil-10");
describe("math/ceil-10", function () {
it("Should ceil", function () {
assert.equal(ceil10(55.51, -1), 55.6);
assert.equal(ceil10(51, 1), 60);
assert.equal(ceil10(-55.59, -1), -55.5);
assert.equal(ceil10(-59, 1), -50);
});
});

13
web/node_modules/ext/test/math/floor-10.js generated vendored Normal file
View file

@ -0,0 +1,13 @@
"use strict";
var assert = require("chai").assert
, floor10 = require("../../math/floor-10");
describe("math/floor-10", function () {
it("Should floor", function () {
assert.equal(floor10(55.59, -1), 55.5);
assert.equal(floor10(59, 1), 50);
assert.equal(floor10(-55.51, -1), -55.6);
assert.equal(floor10(-51, 1), -60);
});
});

19
web/node_modules/ext/test/math/round-10.js generated vendored Normal file
View file

@ -0,0 +1,19 @@
"use strict";
var assert = require("chai").assert
, round10 = require("../../math/round-10");
describe("math/round-10", function () {
it("Should round", function () {
assert.equal(round10(55.55, -1), 55.6);
assert.equal(round10(55.549, -1), 55.5);
assert.equal(round10(55, 1), 60);
assert.equal(round10(54.9, 1), 50);
assert.equal(round10(-55.55, -1), -55.5);
assert.equal(round10(-55.551, -1), -55.6);
assert.equal(round10(-55, 1), -50);
assert.equal(round10(-55.1, 1), -60);
assert.equal(round10(1.005, -2), 1.01);
assert.equal(round10(-1.005, -2), -1.0);
});
});