Appearance
判断 a 是否小于 b。
import { mathLessThan } from '@base-web-kits/base-tools-ts'; mathLessThan(1, 2); // => true mathLessThan(2, 1); // => false