- Go backend (server/)
- Frontend (web/, server/static/)
- Database and deployment files
- Scripts and docs
Co-Authored-By: 狸花猫/Claude-Qwen3.6-Plus 🐾
16 lines
448 B
JavaScript
16 lines
448 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
var fixedBase = function (v, base) {
|
|
var str = base.toString();
|
|
var index = str.indexOf('.');
|
|
if (index === -1) {
|
|
return Math.round(v);
|
|
}
|
|
var length = str.substr(index + 1).length;
|
|
if (length > 20) {
|
|
length = 20;
|
|
}
|
|
return parseFloat(v.toFixed(length));
|
|
};
|
|
exports.default = fixedBase;
|
|
//# sourceMappingURL=fixed-base.js.map
|