mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2026-01-21 18:54:22 +00:00
6 lines
154 B
JavaScript
6 lines
154 B
JavaScript
Number.isInteger =
|
|
Number.isInteger ||
|
|
function(value) {
|
|
return typeof value === "number" && isFinite(value) && Math.floor(value) === value;
|
|
};
|