mirror of
https://github.com/faisalman/ua-parser-js.git
synced 2025-11-16 15:11:50 +03:00
Compare commits
10 Commits
2.0.6-pro-
...
pro-enterp
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a9574e7e7c | ||
|
|
3100e6cf35 | ||
|
|
6fc8ec3187 | ||
|
|
59c20a5656 | ||
|
|
e006e5a129 | ||
|
|
fdcb01d64e | ||
|
|
b960c42691 | ||
|
|
d50be39f3b | ||
|
|
10ec6349e2 | ||
|
|
f9ac3566cb |
@@ -1,4 +1,4 @@
|
||||
# UAPARSER.JS PRO BUSINESS LICENSE
|
||||
# UAPARSER.JS PRO ENTERPRISE LICENSE
|
||||
|
||||
Version 2, July 2024
|
||||
|
||||
@@ -32,9 +32,7 @@ This license is only valid for You as one (1) individual, organization, or compa
|
||||
|
||||
## Rights
|
||||
|
||||
You may use and modify The Code only in one (1) Project. If you use it in more than one (1) Project, you must purchase another license.
|
||||
|
||||
If You transfer a Project to a client, the use of The Code must be limited to the original functionality that You created for them. The Code must not be extracted, reproduced, or used in any other way. You must inform your client of this condition.
|
||||
You may use, copy, and modify The Code for an indefinite number of Projects.
|
||||
|
||||
You have the right to receive lifetime updates and one (1) year of support, starting from the time you make the purchase.
|
||||
|
||||
@@ -44,6 +42,8 @@ You have the right to receive lifetime updates and one (1) year of support, star
|
||||
|
||||
You may not redistribute The Code, as-is or modified, except as a part of a Project that you made.
|
||||
|
||||
If You transfer a Project to a client, the use of The Code must be limited to the original functionality that You created for them. The Code must not be extracted, reproduced, or used in any other way. You must inform your client of this condition.
|
||||
|
||||
You may not deliver a Project that contains The Code as an open-source Project that might be used for commercial purposes by the general public, except with our written consent.
|
||||
|
||||
You may not use The Code for unlawful, inappropriate, illegal, or offensive purposes.
|
||||
|
||||
12
README.md
12
README.md
@@ -1,6 +1,6 @@
|
||||
# UAParser.js PRO Business License
|
||||
# UAParser.js PRO Enterprise License
|
||||
|
||||
Thank you for choosing the UAParser.js PRO Business License.
|
||||
Thank you for choosing the UAParser.js PRO Enterprise License.
|
||||
|
||||
Please be aware that using this package without a valid license purchase is strictly prohibited and constitutes a violation of applicable copyright laws.
|
||||
|
||||
@@ -11,7 +11,7 @@ If you have not yet purchased a license, you may do so at https://store.faisalma
|
||||
# Download
|
||||
|
||||
```sh
|
||||
npm install @ua-parser-js/pro-business
|
||||
npm install @ua-parser-js/pro-enterprise
|
||||
```
|
||||
|
||||
|
||||
@@ -20,15 +20,15 @@ npm install @ua-parser-js/pro-business
|
||||
https://docs.uaparser.dev
|
||||
|
||||
```js
|
||||
import { UAParser } from '@ua-parser-js/pro-business';
|
||||
import { UAParser } from '@ua-parser-js/pro-enterprise';
|
||||
```
|
||||
|
||||
```js
|
||||
import { isFrozenUA } from '@ua-parser-js/pro-business/helpers';
|
||||
import { isFrozenUA } from '@ua-parser-js/pro-enterprise/helpers';
|
||||
```
|
||||
|
||||
# License
|
||||
|
||||
UAParser.js PRO Business
|
||||
UAParser.js PRO Enterprise
|
||||
|
||||
Copyright (c) 2023-2025 Faisal Salman <<f@faisalman.com>>
|
||||
|
||||
2
dist/ua-parser.min.js
vendored
2
dist/ua-parser.min.js
vendored
File diff suppressed because one or more lines are too long
2
dist/ua-parser.min.mjs
vendored
2
dist/ua-parser.min.mjs
vendored
File diff suppressed because one or more lines are too long
2
dist/ua-parser.pack.js
vendored
2
dist/ua-parser.pack.js
vendored
File diff suppressed because one or more lines are too long
2
dist/ua-parser.pack.mjs
vendored
2
dist/ua-parser.pack.mjs
vendored
File diff suppressed because one or more lines are too long
6
package-lock.json
generated
6
package-lock.json
generated
@@ -1,11 +1,11 @@
|
||||
{
|
||||
"name": "@ua-parser-js/pro-business",
|
||||
"name": "@ua-parser-js/pro-enterprise",
|
||||
"version": "2.0.6",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "@ua-parser-js/pro-business",
|
||||
"name": "@ua-parser-js/pro-enterprise",
|
||||
"version": "2.0.6",
|
||||
"funding": [
|
||||
{
|
||||
@@ -28,7 +28,7 @@
|
||||
"ua-is-frozen": "^0.1.2"
|
||||
},
|
||||
"bin": {
|
||||
"pro-business": "script/cli.js"
|
||||
"pro-enterprise": "script/cli.js"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/parser": "7.15.8",
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"title": "UAParser.js PRO Business",
|
||||
"name": "@ua-parser-js/pro-business",
|
||||
"title": "UAParser.js PRO Enterprise",
|
||||
"name": "@ua-parser-js/pro-enterprise",
|
||||
"version": "2.0.6",
|
||||
"author": "Faisal Salman <f@faisalman.com> (http://faisalman.com)",
|
||||
"description": "Detect Browser, Engine, OS, CPU, and Device type/model from User-Agent & Client Hints data. Supports browser & node.js environment",
|
||||
|
||||
2
src/enums/ua-parser-enums.d.ts
vendored
2
src/enums/ua-parser-enums.d.ts
vendored
@@ -6,7 +6,7 @@
|
||||
/* Enums for UAParser.js v2.0.6
|
||||
https://github.com/faisalman/ua-parser-js
|
||||
Author: Faisal Salman <f@faisalman.com>
|
||||
UAParser.js PRO Business License */
|
||||
UAParser.js PRO Enterprise License */
|
||||
//////////////////////////////////////////////
|
||||
|
||||
/*jshint esversion: 6 */
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
/* Enums for UAParser.js v2.0.6
|
||||
https://github.com/faisalman/ua-parser-js
|
||||
Author: Faisal Salman <f@faisalman.com>
|
||||
UAParser.js PRO Business License */
|
||||
UAParser.js PRO Enterprise License */
|
||||
//////////////////////////////////////////////
|
||||
|
||||
/*jshint esversion: 6 */
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
/* Enums for UAParser.js v2.0.6
|
||||
https://github.com/faisalman/ua-parser-js
|
||||
Author: Faisal Salman <f@faisalman.com>
|
||||
UAParser.js PRO Business License */
|
||||
UAParser.js PRO Enterprise License */
|
||||
//////////////////////////////////////////////
|
||||
|
||||
/*jshint esversion: 6 */
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
/* Extensions for UAParser.js v2.0.6
|
||||
https://github.com/faisalman/ua-parser-js
|
||||
Author: Faisal Salman <f@faisalman.com>
|
||||
UAParser.js PRO Business License */
|
||||
UAParser.js PRO Enterprise License */
|
||||
//////////////////////////////////////////////
|
||||
|
||||
/*jshint esversion: 6 */
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
/* Extensions for UAParser.js v2.0.6
|
||||
https://github.com/faisalman/ua-parser-js
|
||||
Author: Faisal Salman <f@faisalman.com>
|
||||
UAParser.js PRO Business License */
|
||||
UAParser.js PRO Enterprise License */
|
||||
//////////////////////////////////////////////
|
||||
|
||||
/*jshint esversion: 6 */
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
/* Helpers for UAParser.js v2.0.6
|
||||
https://github.com/faisalman/ua-parser-js
|
||||
Author: Faisal Salman <f@faisalman.com>
|
||||
UAParser.js PRO Business License */
|
||||
UAParser.js PRO Enterprise License */
|
||||
//////////////////////////////////////////////
|
||||
|
||||
/*jshint esversion: 6 */
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
/* Helpers for UAParser.js v2.0.6
|
||||
https://github.com/faisalman/ua-parser-js
|
||||
Author: Faisal Salman <f@faisalman.com>
|
||||
UAParser.js PRO Business License */
|
||||
UAParser.js PRO Enterprise License */
|
||||
//////////////////////////////////////////////
|
||||
|
||||
/*jshint esversion: 6 */
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
/////////////////////////////////////////////////////////////////////////////////
|
||||
/* UAParser.js v2.0.6
|
||||
Copyright © 2012-2025 Faisal Salman <f@faisalman.com>
|
||||
UAParser.js PRO Business License *//*
|
||||
UAParser.js PRO Enterprise License *//*
|
||||
Detect Browser, Engine, OS, CPU, and Device type/model from User-Agent data.
|
||||
Supports browser & node.js environment.
|
||||
Demo : https://uaparser.dev
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
/////////////////////////////////////////////////////////////////////////////////
|
||||
/* UAParser.js v2.0.6
|
||||
Copyright © 2012-2025 Faisal Salman <f@faisalman.com>
|
||||
UAParser.js PRO Business License *//*
|
||||
UAParser.js PRO Enterprise License *//*
|
||||
Detect Browser, Engine, OS, CPU, and Device type/model from User-Agent data.
|
||||
Supports browser & node.js environment.
|
||||
Demo : https://uaparser.dev
|
||||
|
||||
Reference in New Issue
Block a user