Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions bower_components/fingerprintjs2/fingerprint2.js
Original file line number Diff line number Diff line change
Expand Up @@ -529,6 +529,14 @@
return "unknown";
}
},
getEndianess: function(){
let a=new Uint32Array([0xf807f00f]),
c=new Uint8Array(a.buffer);
if(b[0]==c[0]+c[1]*256+c[2]*256*256+c[3]*256*256*256)
return true;
if(b[0]==c[3]+c[2]*256+c[1]*256*256+c[0]*256*256*256)
return false;
},
getNavigatorPlatform: function () {
if(navigator.platform) {
return navigator.platform;
Expand Down