devicer.js 1.0.2 → 1.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -5,7 +5,7 @@ FP-Devicer is a digital fingerprinting middleware library designed for ease of u
5
5
 
6
6
  Importing and using the library to compare fingerprints between users is as simple as collecting some user data and running the calculateConfidence function.
7
7
  ```javascript
8
- import { FPUserDataSet as UserData, calculateConfidence } from "fp-devicer";
8
+ import { FPUserDataSet as UserData, calculateConfidence } from "devicer.js";
9
9
 
10
10
  const user1: UserData = {
11
11
  // Collected data goes here
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "devicer.js",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "Open-Source Digital Fingerprinting Middleware",
5
5
  "main": "src/main.js",
6
6
  "scripts": {