ua-parser-js 0.7.28 → 0.7.33
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.
- package/changelog.md +0 -0
- package/dist/ua-parser.html +0 -0
- package/dist/ua-parser.min.js +4 -9
- package/dist/ua-parser.pack.js +4 -9
- package/license.md +0 -0
- package/package.json +10 -4
- package/readme.md +74 -23
- package/src/ua-parser.js +408 -422
- package/.github/FUNDING.yml +0 -12
- package/.github/workflows/run-test.yml +0 -17
- package/.travis.yml +0 -18
- package/bower.json +0 -17
- package/package.js +0 -12
- package/test/browser-test.json +0 -1377
- package/test/cpu-test.json +0 -178
- package/test/device-test.json +0 -2446
- package/test/engine-test.json +0 -155
- package/test/mediaplayer-test.json +0 -582
- package/test/os-test.json +0 -920
- package/test/test.js +0 -159
package/.github/FUNDING.yml
DELETED
@@ -1,12 +0,0 @@
|
|
1
|
-
# These are supported funding model platforms
|
2
|
-
|
3
|
-
github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
|
4
|
-
patreon: # Replace with a single Patreon username
|
5
|
-
open_collective: ua-parser-js
|
6
|
-
ko_fi: # Replace with a single Ko-fi username
|
7
|
-
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
|
8
|
-
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
|
9
|
-
liberapay: # Replace with a single Liberapay username
|
10
|
-
issuehunt: # Replace with a single IssueHunt username
|
11
|
-
otechie: # Replace with a single Otechie username
|
12
|
-
custom: ['https://www.paypal.me/faisalman/']
|
@@ -1,17 +0,0 @@
|
|
1
|
-
name: ua-parser-js-run-test
|
2
|
-
|
3
|
-
on: [push, pull_request]
|
4
|
-
|
5
|
-
jobs:
|
6
|
-
run-test:
|
7
|
-
runs-on: ubuntu-latest
|
8
|
-
strategy:
|
9
|
-
matrix:
|
10
|
-
arch: [amd64, ppc64le]
|
11
|
-
steps:
|
12
|
-
- uses: actions/checkout@v2
|
13
|
-
- uses: actions/setup-node@v2
|
14
|
-
- name: Run the test
|
15
|
-
run: |
|
16
|
-
npm install
|
17
|
-
npm run test-ci
|
package/.travis.yml
DELETED
package/bower.json
DELETED
@@ -1,17 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"name": "ua-parser-js",
|
3
|
-
"version": "0.7.28",
|
4
|
-
"authors": [
|
5
|
-
"Faisal Salman <f@faisalman.com>"
|
6
|
-
],
|
7
|
-
"private": false,
|
8
|
-
"main": "src/ua-parser.js",
|
9
|
-
"ignore": [
|
10
|
-
"build",
|
11
|
-
"node_modules",
|
12
|
-
"bower_components",
|
13
|
-
"test",
|
14
|
-
"tests"
|
15
|
-
],
|
16
|
-
"dependencies": {}
|
17
|
-
}
|
package/package.js
DELETED
@@ -1,12 +0,0 @@
|
|
1
|
-
Package.describe({
|
2
|
-
name: 'faisalman:ua-parser-js',
|
3
|
-
version: '0.7.28',
|
4
|
-
summary: 'Lightweight JavaScript-based user-agent string parser',
|
5
|
-
git: 'https://github.com/faisalman/ua-parser-js.git',
|
6
|
-
documentation: 'readme.md'
|
7
|
-
});
|
8
|
-
|
9
|
-
Package.onUse(function (api) {
|
10
|
-
api.addFiles("src/ua-parser.js");
|
11
|
-
api.export("UAParser");
|
12
|
-
});
|