Files
cashier_app/uni_modules/kux-dayjs/common/utils.uts
2025-12-03 10:13:55 +08:00

12 lines
273 B
Plaintext

// #ifdef APP-ANDROID
import MathFloor from 'kotlin.math.floor';
// #endif
export const floor = (value: number): number => {
// #ifndef APP-ANDROID
return Math.floor(value);
// #endif
// #ifdef APP-ANDROID
return Number.from(MathFloor(value.toDouble()));
// #endif
}