get-browser-fingerprint
Advanced tools
Comparing version 3.2.2 to 3.2.3
{ | ||
"name": "get-browser-fingerprint", | ||
"version": "3.2.2", | ||
"version": "3.2.3", | ||
"author": "Damiano Barbati <damiano.barbati@gmail.com> (https://github.com/damianobarbati)", | ||
@@ -13,3 +13,3 @@ "repository": "https://github.com/damianobarbati/get-browser-fingerprint", | ||
"src/index.js", | ||
"src/index.d.js" | ||
"src/index.d.ts" | ||
], | ||
@@ -16,0 +16,0 @@ "types": "./src/index.d.ts", |
@@ -62,3 +62,3 @@ const getBrowserFingerprint = ({ hardwareOnly = false, enableWebgl = false, enableScreen = true, debug = false } = {}) => { | ||
export const getCanvasID = (debug) => { | ||
const getCanvasID = (debug) => { | ||
try { | ||
@@ -92,3 +92,3 @@ const canvas = document.createElement("canvas"); | ||
export const getWebglID = (debug) => { | ||
const getWebglID = (debug) => { | ||
try { | ||
@@ -153,3 +153,3 @@ const canvas = document.createElement("canvas"); | ||
export const getWebglInfo = () => { | ||
const getWebglInfo = () => { | ||
try { | ||
@@ -171,3 +171,3 @@ const ctx = document.createElement("canvas").getContext("webgl"); | ||
export const murmurhash3_32_gc = (key) => { | ||
const murmurhash3_32_gc = (key) => { | ||
const remainder = key.length & 3; // key.length % 4 | ||
@@ -174,0 +174,0 @@ const bytes = key.length - remainder; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
9011
4
201