detect-is-it-html-or-xhtml 5.0.6 → 5.0.12
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/LICENSE +1 -1
- package/README.md +4 -5
- package/dist/detect-is-it-html-or-xhtml.esm.js +2 -51
- package/dist/detect-is-it-html-or-xhtml.umd.js +2 -2
- package/examples/_quickTake.js +1 -0
- package/package.json +24 -76
- package/types/index.d.ts +0 -0
- package/examples/api.json +0 -1
package/LICENSE
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c) 2010-
|
|
3
|
+
Copyright (c) 2010-2022 Roy Revelt and other contributors
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining
|
|
6
6
|
a copy of this software and associated documentation files (the
|
package/README.md
CHANGED
|
@@ -26,18 +26,17 @@
|
|
|
26
26
|
|
|
27
27
|
## Install
|
|
28
28
|
|
|
29
|
-
|
|
29
|
+
The latest version is **ESM only**: Node 12+ is needed to use it and it must be `import`ed instead of `require`d. If your project is not on ESM yet and you want to use `require`, use an older version of this program, `4.1.0`.
|
|
30
30
|
|
|
31
31
|
```bash
|
|
32
32
|
npm i detect-is-it-html-or-xhtml
|
|
33
33
|
```
|
|
34
34
|
|
|
35
|
-
If you need a legacy version which works with `require`, use version 4.1.0
|
|
36
|
-
|
|
37
35
|
## Quick Take
|
|
38
36
|
|
|
39
37
|
```js
|
|
40
38
|
import { strict as assert } from "assert";
|
|
39
|
+
|
|
41
40
|
import { detectIsItHTMLOrXhtml } from "detect-is-it-html-or-xhtml";
|
|
42
41
|
|
|
43
42
|
assert.equal(
|
|
@@ -50,7 +49,7 @@ assert.equal(
|
|
|
50
49
|
|
|
51
50
|
## Documentation
|
|
52
51
|
|
|
53
|
-
Please [visit codsen.com](https://codsen.com/os/detect-is-it-html-or-xhtml/) for a full description of the API
|
|
52
|
+
Please [visit codsen.com](https://codsen.com/os/detect-is-it-html-or-xhtml/) for a full description of the API.
|
|
54
53
|
|
|
55
54
|
## Contributing
|
|
56
55
|
|
|
@@ -60,6 +59,6 @@ To report bugs or request features or assistance, [raise an issue](https://githu
|
|
|
60
59
|
|
|
61
60
|
MIT License
|
|
62
61
|
|
|
63
|
-
Copyright (c) 2010-
|
|
62
|
+
Copyright (c) 2010-2022 Roy Revelt and other contributors
|
|
64
63
|
|
|
65
64
|
<img src="https://codsen.com/images/png-codsen-ok.png" width="98" alt="ok" align="center"> <img src="https://codsen.com/images/png-codsen-1.png" width="148" alt="codsen" align="center"> <img src="https://codsen.com/images/png-codsen-star-small.png" width="32" alt="star" align="center">
|
|
@@ -1,59 +1,10 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @name detect-is-it-html-or-xhtml
|
|
3
3
|
* @fileoverview Answers, is the string input string more an HTML or XHTML (or neither)
|
|
4
|
-
* @version 5.0.
|
|
4
|
+
* @version 5.0.12
|
|
5
5
|
* @author Roy Revelt, Codsen Ltd
|
|
6
6
|
* @license MIT
|
|
7
7
|
* {@link https://codsen.com/os/detect-is-it-html-or-xhtml/}
|
|
8
8
|
*/
|
|
9
9
|
|
|
10
|
-
var
|
|
11
|
-
|
|
12
|
-
const version = version$1;
|
|
13
|
-
function detectIsItHTMLOrXhtml(input) {
|
|
14
|
-
function existy(x) {
|
|
15
|
-
return x != null;
|
|
16
|
-
}
|
|
17
|
-
if (!input) {
|
|
18
|
-
return null;
|
|
19
|
-
}
|
|
20
|
-
if (typeof input !== "string") {
|
|
21
|
-
throw new TypeError("detect-is-it-html-or-xhtml: [THROW_ID_01] Input must be string");
|
|
22
|
-
}
|
|
23
|
-
const metaTag = /<\s*!\s*doctype[^>]*>/im;
|
|
24
|
-
const imgTag = /<\s*img[^>]*>/gi;
|
|
25
|
-
const brTag = /<\s*br[^>]*>/gi;
|
|
26
|
-
const hrTag = /<\s*hr[^>]*>/gi;
|
|
27
|
-
const closingSlash = /\/\s*>/g;
|
|
28
|
-
const extractedMetaTag = input.match(metaTag);
|
|
29
|
-
if (extractedMetaTag) {
|
|
30
|
-
const xhtmlRegex = /xhtml/gi;
|
|
31
|
-
const svgRegex = /svg/gi;
|
|
32
|
-
if (extractedMetaTag[0].match(xhtmlRegex) ||
|
|
33
|
-
extractedMetaTag[0].match(svgRegex)) {
|
|
34
|
-
return "xhtml";
|
|
35
|
-
}
|
|
36
|
-
return "html";
|
|
37
|
-
}
|
|
38
|
-
const allImageTagsArr = input.match(imgTag) || [];
|
|
39
|
-
const allBRTagsArr = input.match(brTag) || [];
|
|
40
|
-
const allHRTagsArr = input.match(hrTag) || [];
|
|
41
|
-
const allConcernedTagsArr = allImageTagsArr
|
|
42
|
-
.concat(allBRTagsArr)
|
|
43
|
-
.concat(allHRTagsArr);
|
|
44
|
-
if (allConcernedTagsArr.length === 0) {
|
|
45
|
-
return null;
|
|
46
|
-
}
|
|
47
|
-
let slashCount = 0;
|
|
48
|
-
for (let i = 0, len = allConcernedTagsArr.length; i < len; i++) {
|
|
49
|
-
if (existy(allConcernedTagsArr[i].match(closingSlash))) {
|
|
50
|
-
slashCount += 1;
|
|
51
|
-
}
|
|
52
|
-
}
|
|
53
|
-
if (slashCount > allConcernedTagsArr.length / 2) {
|
|
54
|
-
return "xhtml";
|
|
55
|
-
}
|
|
56
|
-
return "html";
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
export { detectIsItHTMLOrXhtml, version };
|
|
10
|
+
var i="5.0.12";var T=i;function b(e){function o(t){return t!=null}if(!e)return null;if(typeof e!="string")throw new TypeError("detect-is-it-html-or-xhtml: [THROW_ID_01] Input must be string");let c=/<\s*!\s*doctype[^>]*>/im,a=/<\s*img[^>]*>/gi,m=/<\s*br[^>]*>/gi,h=/<\s*hr[^>]*>/gi,d=/\/\s*>/g,s=e.match(c);if(s){let t=/xhtml/gi,l=/svg/gi;return s[0].match(t)||s[0].match(l)?"xhtml":"html"}let u=e.match(a)||[],p=e.match(m)||[],g=e.match(h)||[],r=u.concat(p).concat(g);if(r.length===0)return null;let n=0;for(let t=0,l=r.length;t<l;t++)o(r[t].match(d))&&(n+=1);return n>r.length/2?"xhtml":"html"}export{b as detectIsItHTMLOrXhtml,T as version};
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @name detect-is-it-html-or-xhtml
|
|
3
3
|
* @fileoverview Answers, is the string input string more an HTML or XHTML (or neither)
|
|
4
|
-
* @version 5.0.
|
|
4
|
+
* @version 5.0.12
|
|
5
5
|
* @author Roy Revelt, Codsen Ltd
|
|
6
6
|
* @license MIT
|
|
7
7
|
* {@link https://codsen.com/os/detect-is-it-html-or-xhtml/}
|
|
8
8
|
*/
|
|
9
9
|
|
|
10
|
-
|
|
10
|
+
var detectIsItHtmlOrXhtml=(()=>{var a=Object.defineProperty;var x=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var T=Object.prototype.hasOwnProperty;var b=t=>a(t,"__esModule",{value:!0});var v=(t,e)=>{for(var r in e)a(t,r,{get:e[r],enumerable:!0})},j=(t,e,r,n)=>{if(e&&typeof e=="object"||typeof e=="function")for(let s of f(e))!T.call(t,s)&&(r||s!=="default")&&a(t,s,{get:()=>e[s],enumerable:!(n=x(e,s))||n.enumerable});return t};var R=(t=>(e,r)=>t&&t.get(e)||(r=j(b({}),e,1),t&&t.set(e,r),r))(typeof WeakMap!="undefined"?new WeakMap:0);var M={};v(M,{detectIsItHTMLOrXhtml:()=>I,version:()=>A});var h="5.0.12";var A=h;function I(t){function e(l){return l!=null}if(!t)return null;if(typeof t!="string")throw new TypeError("detect-is-it-html-or-xhtml: [THROW_ID_01] Input must be string");let r=/<\s*!\s*doctype[^>]*>/im,n=/<\s*img[^>]*>/gi,s=/<\s*br[^>]*>/gi,d=/<\s*hr[^>]*>/gi,u=/\/\s*>/g,o=t.match(r);if(o){let l=/xhtml/gi,c=/svg/gi;return o[0].match(l)||o[0].match(c)?"xhtml":"html"}let p=t.match(n)||[],g=t.match(s)||[],y=t.match(d)||[],i=p.concat(g).concat(y);if(i.length===0)return null;let m=0;for(let l=0,c=i.length;l<c;l++)e(i[l].match(u))&&(m+=1);return m>i.length/2?"xhtml":"html"}return R(M);})();
|
package/examples/_quickTake.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "detect-is-it-html-or-xhtml",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.12",
|
|
4
4
|
"description": "Answers, is the string input string more an HTML or XHTML (or neither)",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"check",
|
|
@@ -37,89 +37,37 @@
|
|
|
37
37
|
},
|
|
38
38
|
"types": "types/index.d.ts",
|
|
39
39
|
"scripts": {
|
|
40
|
-
"build": "
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"prettier": "
|
|
52
|
-
"
|
|
53
|
-
"
|
|
54
|
-
"
|
|
55
|
-
"test": "npm run test:ci && npm run perf",
|
|
56
|
-
"test:ci": "npm run unittest && npm run test:examples && npm run format",
|
|
57
|
-
"test:examples": "../../scripts/test-examples.js && npm run lect && npm run prettier",
|
|
58
|
-
"tsc": "tsc",
|
|
59
|
-
"unittest": "tap --no-only --reporter=terse && tsc -p tsconfig.json --noEmit"
|
|
40
|
+
"build": "node '../../ops/scripts/esbuild.js' && yarn run dts",
|
|
41
|
+
"dev": "DEV=true node '../../ops/scripts/esbuild.js' && yarn run dts",
|
|
42
|
+
"devtest": "c8 yarn run unit && yarn run examples && yarn run lint",
|
|
43
|
+
"dts": "rollup -c && yarn run prettier 'types/index.d.ts' --write",
|
|
44
|
+
"examples": "node '../../ops/scripts/run-examples.js'",
|
|
45
|
+
"lect": "node '../../ops/lect/lect.js' && yarn run prettier 'README.md' '.all-contributorsrc' 'rollup.config.js' --write",
|
|
46
|
+
"letspublish": "yarn publish || :",
|
|
47
|
+
"lint": "eslint . --fix",
|
|
48
|
+
"perf": "node perf/check.js",
|
|
49
|
+
"prepare": "echo 'ready'",
|
|
50
|
+
"prettier": "prettier",
|
|
51
|
+
"prettier:format": "prettier --write '**/*.{ts,tsx,md}' --no-error-on-unmatched-pattern",
|
|
52
|
+
"pretest": "yarn run lect && yarn run build",
|
|
53
|
+
"test": "yarn run devtest",
|
|
54
|
+
"unit": "uvu test"
|
|
60
55
|
},
|
|
61
|
-
"
|
|
62
|
-
"
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
56
|
+
"engines": {
|
|
57
|
+
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
|
|
58
|
+
},
|
|
59
|
+
"c8": {
|
|
60
|
+
"check-coverage": true,
|
|
61
|
+
"exclude": [
|
|
62
|
+
"**/test/**/*.*"
|
|
67
63
|
],
|
|
68
|
-
"
|
|
64
|
+
"lines": 100
|
|
69
65
|
},
|
|
70
66
|
"lect": {
|
|
71
67
|
"licence": {
|
|
72
68
|
"extras": [
|
|
73
69
|
""
|
|
74
70
|
]
|
|
75
|
-
},
|
|
76
|
-
"req": "{ detectIsItHTMLOrXhtml }",
|
|
77
|
-
"various": {
|
|
78
|
-
"devDependencies": []
|
|
79
71
|
}
|
|
80
|
-
},
|
|
81
|
-
"dependencies": {
|
|
82
|
-
"@babel/runtime": "^7.16.3"
|
|
83
|
-
},
|
|
84
|
-
"devDependencies": {
|
|
85
|
-
"@babel/cli": "^7.16.0",
|
|
86
|
-
"@babel/core": "^7.16.0",
|
|
87
|
-
"@babel/node": "^7.16.0",
|
|
88
|
-
"@babel/plugin-external-helpers": "^7.16.0",
|
|
89
|
-
"@babel/plugin-proposal-class-properties": "^7.16.0",
|
|
90
|
-
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.16.0",
|
|
91
|
-
"@babel/plugin-proposal-object-rest-spread": "^7.16.0",
|
|
92
|
-
"@babel/plugin-proposal-optional-chaining": "^7.16.0",
|
|
93
|
-
"@babel/plugin-transform-runtime": "^7.16.4",
|
|
94
|
-
"@babel/preset-env": "^7.16.4",
|
|
95
|
-
"@babel/preset-typescript": "^7.16.0",
|
|
96
|
-
"@babel/register": "^7.16.0",
|
|
97
|
-
"@istanbuljs/esm-loader-hook": "^0.1.2",
|
|
98
|
-
"@rollup/plugin-babel": "^5.3.0",
|
|
99
|
-
"@rollup/plugin-commonjs": "^21.0.1",
|
|
100
|
-
"@rollup/plugin-json": "^4.1.0",
|
|
101
|
-
"@rollup/plugin-node-resolve": "^13.0.6",
|
|
102
|
-
"@rollup/plugin-strip": "^2.1.0",
|
|
103
|
-
"@rollup/plugin-typescript": "^8.3.0",
|
|
104
|
-
"@types/node": "^16.11.9",
|
|
105
|
-
"@types/tap": "^15.0.5",
|
|
106
|
-
"@typescript-eslint/eslint-plugin": "^5.4.0",
|
|
107
|
-
"@typescript-eslint/parser": "^5.4.0",
|
|
108
|
-
"core-js": "^3.19.1",
|
|
109
|
-
"cross-env": "^7.0.3",
|
|
110
|
-
"eslint": "^8.3.0",
|
|
111
|
-
"lect": "^0.18.6",
|
|
112
|
-
"rollup": "^2.60.0",
|
|
113
|
-
"rollup-plugin-ascii": "^0.0.3",
|
|
114
|
-
"rollup-plugin-banner": "^0.2.1",
|
|
115
|
-
"rollup-plugin-cleanup": "^3.2.1",
|
|
116
|
-
"rollup-plugin-dts": "^4.0.1",
|
|
117
|
-
"rollup-plugin-terser": "^7.0.2",
|
|
118
|
-
"tap": "^15.1.2",
|
|
119
|
-
"tslib": "^2.3.1",
|
|
120
|
-
"typescript": "^4.5.2"
|
|
121
|
-
},
|
|
122
|
-
"engines": {
|
|
123
|
-
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
|
|
124
72
|
}
|
|
125
73
|
}
|
package/types/index.d.ts
CHANGED
|
File without changes
|
package/examples/api.json
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"_quickTake.js":{"title":"Quick Take","content":"import { strict as assert } from \"assert\";\nimport { detectIsItHTMLOrXhtml } from \"detect-is-it-html-or-xhtml\";\n\nassert.equal(\n detectIsItHTMLOrXhtml(\n `<img src=\"some.jpg\" width=\"zzz\" height=\"zzz\" border=\"0\" style=\"display:block;\" alt=\"zzz\"/>`\n ),\n \"xhtml\"\n);"}}
|