6 lines
86 B
JavaScript
6 lines
86 B
JavaScript
function isFinite(value) {
|
|
return Number.isFinite(value);
|
|
}
|
|
|
|
export { isFinite };
|