mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2025-12-20 09:20:16 +00:00
Initial Move from Azure DevOps to GitHub
This commit is contained in:
5
src/Libs/is-integer-polyfill.js
Normal file
5
src/Libs/is-integer-polyfill.js
Normal file
@@ -0,0 +1,5 @@
|
||||
Number.isInteger =
|
||||
Number.isInteger ||
|
||||
function(value) {
|
||||
return typeof value === "number" && isFinite(value) && Math.floor(value) === value;
|
||||
};
|
||||
5
src/Libs/jquery.js
vendored
Normal file
5
src/Libs/jquery.js
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
import $ from 'jquery';
|
||||
global.$ = $;
|
||||
global.jQuery = $;
|
||||
require('datatables.net-dt');
|
||||
require('datatables.net-colreorder-dt');
|
||||
Reference in New Issue
Block a user