This commit is contained in:
Simon Priet
2021-09-05 22:53:58 +02:00
commit 9e2991e668
17888 changed files with 1263126 additions and 0 deletions

13
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);
});
});