detect-is-it-html-or-xhtml 5.0.7 → 5.0.10

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/README.md CHANGED
@@ -38,6 +38,7 @@ If you need a legacy version which works with `require`, use version 4.1.0
38
38
 
39
39
  ```js
40
40
  import { strict as assert } from "assert";
41
+
41
42
  import { detectIsItHTMLOrXhtml } from "detect-is-it-html-or-xhtml";
42
43
 
43
44
  assert.equal(
@@ -50,7 +51,7 @@ assert.equal(
50
51
 
51
52
  ## Documentation
52
53
 
53
- Please [visit codsen.com](https://codsen.com/os/detect-is-it-html-or-xhtml/) for a full description of the API and examples.
54
+ Please [visit codsen.com](https://codsen.com/os/detect-is-it-html-or-xhtml/) for a full description of the API.
54
55
 
55
56
  ## Contributing
56
57
 
@@ -62,4 +63,6 @@ MIT License
62
63
 
63
64
  Copyright (c) 2010-2021 Roy Revelt and other contributors
64
65
 
66
+
65
67
  <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">
68
+
@@ -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.7
4
+ * @version 5.0.10
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 version$1 = "5.0.7";
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.10";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,u=/\/\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 d=e.match(a)||[],g=e.match(m)||[],p=e.match(h)||[],r=d.concat(g).concat(p);if(r.length===0)return null;let n=0;for(let t=0,l=r.length;t<l;t++)o(r[t].match(u))&&(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.7
4
+ * @version 5.0.10
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
- !function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e(exports):"function"==typeof define&&define.amd?define(["exports"],e):e((t="undefined"!=typeof globalThis?globalThis:t||self).detectIsItHtmlOrXhtml={})}(this,(function(t){"use strict";t.detectIsItHTMLOrXhtml=function(t){if(!t)return null;if("string"!=typeof t)throw new TypeError("detect-is-it-html-or-xhtml: [THROW_ID_01] Input must be string");const e=/\/\s*>/g,n=t.match(/<\s*!\s*doctype[^>]*>/im);if(n){const t=/svg/gi;return n[0].match(/xhtml/gi)||n[0].match(t)?"xhtml":"html"}const i=t.match(/<\s*img[^>]*>/gi)||[],l=t.match(/<\s*br[^>]*>/gi)||[],o=t.match(/<\s*hr[^>]*>/gi)||[],r=i.concat(l).concat(o);if(0===r.length)return null;let s=0;for(let t=0,n=r.length;t<n;t++)null!=r[t].match(e)&&(s+=1);return s>r.length/2?"xhtml":"html"},t.version="5.0.7",Object.defineProperty(t,"__esModule",{value:!0})}));
10
+ var detectIsItHtmlOrXhtml=(()=>{var a=Object.defineProperty;var y=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=y(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 H={};v(H,{detectIsItHTMLOrXhtml:()=>A,version:()=>k});var h="5.0.10";var k=h;function A(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,u=/<\s*hr[^>]*>/gi,d=/\/\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 g=t.match(n)||[],p=t.match(s)||[],x=t.match(u)||[],i=g.concat(p).concat(x);if(i.length===0)return null;let m=0;for(let l=0,c=i.length;l<c;l++)e(i[l].match(d))&&(m+=1);return m>i.length/2?"xhtml":"html"}return R(H);})();
@@ -1,6 +1,7 @@
1
1
  // Quick Take
2
2
 
3
3
  import { strict as assert } from "assert";
4
+
4
5
  import { detectIsItHTMLOrXhtml } from "../dist/detect-is-it-html-or-xhtml.esm.js";
5
6
 
6
7
  assert.equal(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "detect-is-it-html-or-xhtml",
3
- "version": "5.0.7",
3
+ "version": "5.0.10",
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,34 @@
37
37
  },
38
38
  "types": "types/index.d.ts",
39
39
  "scripts": {
40
- "build": "rollup -c",
41
- "build:esbuild": "node '../../scripts/esbuild.js'",
42
- "build:esbuild:dev": "cross-env MODE=dev node '../../scripts/esbuild.js'",
43
- "ci_test": "npm run build && npm run format && tap --no-only --reporter=silent",
44
- "clean_types": "../../scripts/cleanTypes.js",
45
- "dev": "rollup -c --dev",
46
- "devunittest": "npm run dev && tap --only -R 'base'",
47
- "format": "npm run lect && npm run prettier && npm run lint",
48
- "lect": "lect",
49
- "lint": "../../node_modules/eslint/bin/eslint.js . --ext .js --ext .ts --fix --config \"../../.eslintrc.json\" --quiet",
50
- "perf": "node perf/check",
51
- "prettier": "../../node_modules/prettier/bin-prettier.js '*.{js,css,scss,vue,md,ts}' --write --loglevel silent",
52
- "republish": "npm publish || :",
53
- "tap": "tap",
54
- "pretest": "npm run build",
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
+ "dts": "rollup -c",
43
+ "examples": "node '../../ops/scripts/run-examples.js'",
44
+ "lect": "node '../../ops/lect/lect.js'",
45
+ "letspublish": "yarn publish || :",
46
+ "lint": "eslint . --fix",
47
+ "perf": "node perf/check.js",
48
+ "prepare": "echo 'ready'",
49
+ "pretest": "yarn run lect && yarn run build",
50
+ "test": "c8 yarn run unit && yarn run examples && yarn run lint",
51
+ "unit": "uvu test"
60
52
  },
61
- "tap": {
62
- "check-coverage": false,
63
- "node-arg": [
64
- "--no-warnings",
65
- "--experimental-loader",
66
- "@istanbuljs/esm-loader-hook"
53
+ "engines": {
54
+ "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
55
+ },
56
+ "c8": {
57
+ "check-coverage": true,
58
+ "exclude": [
59
+ "**/test/**/*.*"
67
60
  ],
68
- "timeout": 0
61
+ "lines": 100
69
62
  },
70
63
  "lect": {
71
64
  "licence": {
72
65
  "extras": [
73
66
  ""
74
67
  ]
75
- },
76
- "req": "{ detectIsItHTMLOrXhtml }",
77
- "various": {
78
- "devDependencies": []
79
68
  }
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.10",
105
- "@types/tap": "^15.0.5",
106
- "@typescript-eslint/eslint-plugin": "^5.5.0",
107
- "@typescript-eslint/parser": "^5.5.0",
108
- "core-js": "^3.19.2",
109
- "cross-env": "^7.0.3",
110
- "eslint": "^8.3.0",
111
- "lect": "^0.18.7",
112
- "rollup": "^2.60.1",
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.5",
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
69
  }
125
70
  }
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 &#x7B; strict as assert &#x7D; from \"assert\";\nimport &#x7B; detectIsItHTMLOrXhtml &#x7D; 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);"}}