11 lines
238 B
JavaScript
11 lines
238 B
JavaScript
import { toNumber } from './toNumber.mjs';
|
|
|
|
function lt(value, other) {
|
|
if (typeof value === 'string' && typeof other === 'string') {
|
|
return value < other;
|
|
}
|
|
return toNumber(value) < toNumber(other);
|
|
}
|
|
|
|
export { lt };
|