⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.1
Server IP:
185.238.29.86
Server:
Linux server2 6.8.12-6-pve #1 SMP PREEMPT_DYNAMIC PMX 6.8.12-6 (2024-12-19T19:05Z) x86_64
Server Software:
nginx/1.18.0
PHP Version:
8.1.31
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
www
/
invoice
/
node_modules
/
jsgrid
/
src
/
View File Name :
jsgrid.sort-strategies.js
(function(jsGrid, $, undefined) { var isDefined = function(val) { return typeof(val) !== "undefined" && val !== null; }; var sortStrategies = { string: function(str1, str2) { if(!isDefined(str1) && !isDefined(str2)) return 0; if(!isDefined(str1)) return -1; if(!isDefined(str2)) return 1; return ("" + str1).localeCompare("" + str2); }, number: function(n1, n2) { return n1 - n2; }, date: function(dt1, dt2) { return dt1 - dt2; }, numberAsString: function(n1, n2) { return parseFloat(n1) - parseFloat(n2); } }; jsGrid.sortStrategies = sortStrategies; }(jsGrid, jQuery));