You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
377 B
JavaScript
15 lines
377 B
JavaScript
6 months ago
|
function isDef(value) {
|
||
|
return value !== undefined && value !== null;
|
||
|
}
|
||
|
function isObj(x) {
|
||
|
const type = typeof x;
|
||
|
return x !== null && (type === 'object' || type === 'function');
|
||
|
}
|
||
|
function isNumber(value) {
|
||
|
return /^\d+$/.test(value);
|
||
|
}
|
||
|
function range(num, min, max) {
|
||
|
return Math.min(Math.max(num, min), max);
|
||
|
}
|
||
|
export { isObj, isDef, isNumber, range };
|