string-character-is-astral-surrogate 2.0.7 → 2.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 1.13.0
38
38
 
39
39
  ```js
40
40
  import { strict as assert } from "assert";
41
+
41
42
  import {
42
43
  isHighSurrogate,
43
44
  isLowSurrogate,
@@ -61,7 +62,7 @@ assert.equal(isLowSurrogate("\uDDE2"), true);
61
62
 
62
63
  ## Documentation
63
64
 
64
- Please [visit codsen.com](https://codsen.com/os/string-character-is-astral-surrogate/) for a full description of the API and examples.
65
+ Please [visit codsen.com](https://codsen.com/os/string-character-is-astral-surrogate/) for a full description of the API.
65
66
 
66
67
  ## Contributing
67
68
 
@@ -73,4 +74,6 @@ MIT License
73
74
 
74
75
  Copyright (c) 2010-2021 Roy Revelt and other contributors
75
76
 
77
+
76
78
  <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">
79
+
@@ -1,35 +1,10 @@
1
1
  /**
2
2
  * @name string-character-is-astral-surrogate
3
3
  * @fileoverview Tells, is given character a part of astral character, specifically, a high and low surrogate
4
- * @version 2.0.7
4
+ * @version 2.0.10
5
5
  * @author Roy Revelt, Codsen Ltd
6
6
  * @license MIT
7
7
  * {@link https://codsen.com/os/string-character-is-astral-surrogate/}
8
8
  */
9
9
 
10
- function isHighSurrogate(something) {
11
- if (typeof something === "string") {
12
- if (something.length === 0) {
13
- return false;
14
- }
15
- return something.charCodeAt(0) >= 55296 && something.charCodeAt(0) <= 56319;
16
- }
17
- if (something === undefined) {
18
- return false;
19
- }
20
- throw new TypeError(`string-character-is-astral-surrogate/isHighSurrogate(): the input is not string but ${typeof something}`);
21
- }
22
- function isLowSurrogate(something) {
23
- if (typeof something === "string") {
24
- if (something.length === 0) {
25
- return false;
26
- }
27
- return something.charCodeAt(0) >= 56320 && something.charCodeAt(0) <= 57343;
28
- }
29
- if (something === undefined) {
30
- return false;
31
- }
32
- throw new TypeError(`string-character-is-astral-surrogate/isLowSurrogate(): the input is not string but ${typeof something}`);
33
- }
34
-
35
- export { isHighSurrogate, isLowSurrogate };
10
+ function t(r){if(typeof r=="string")return r.length===0?!1:r.charCodeAt(0)>=55296&&r.charCodeAt(0)<=56319;if(r===void 0)return!1;throw new TypeError(`string-character-is-astral-surrogate/isHighSurrogate(): the input is not string but ${typeof r}`)}function e(r){if(typeof r=="string")return r.length===0?!1:r.charCodeAt(0)>=56320&&r.charCodeAt(0)<=57343;if(r===void 0)return!1;throw new TypeError(`string-character-is-astral-surrogate/isLowSurrogate(): the input is not string but ${typeof r}`)}export{t as isHighSurrogate,e as isLowSurrogate};
@@ -1,10 +1,10 @@
1
1
  /**
2
2
  * @name string-character-is-astral-surrogate
3
3
  * @fileoverview Tells, is given character a part of astral character, specifically, a high and low surrogate
4
- * @version 2.0.7
4
+ * @version 2.0.10
5
5
  * @author Roy Revelt, Codsen Ltd
6
6
  * @license MIT
7
7
  * {@link https://codsen.com/os/string-character-is-astral-surrogate/}
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).stringCharacterIsAstralSurrogate={})}(this,(function(t){"use strict";t.isHighSurrogate=function(t){if("string"==typeof t)return 0!==t.length&&(t.charCodeAt(0)>=55296&&t.charCodeAt(0)<=56319);if(void 0===t)return!1;throw new TypeError("string-character-is-astral-surrogate/isHighSurrogate(): the input is not string but "+typeof t)},t.isLowSurrogate=function(t){if("string"==typeof t)return 0!==t.length&&(t.charCodeAt(0)>=56320&&t.charCodeAt(0)<=57343);if(void 0===t)return!1;throw new TypeError("string-character-is-astral-surrogate/isLowSurrogate(): the input is not string but "+typeof t)},Object.defineProperty(t,"__esModule",{value:!0})}));
10
+ var stringCharacterIsAstralSurrogate=(()=>{var a=Object.defineProperty;var u=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var o=Object.prototype.hasOwnProperty;var s=r=>a(r,"__esModule",{value:!0});var d=(r,t)=>{for(var e in t)a(r,e,{get:t[e],enumerable:!0})},c=(r,t,e,i)=>{if(t&&typeof t=="object"||typeof t=="function")for(let n of f(t))!o.call(r,n)&&(e||n!=="default")&&a(r,n,{get:()=>t[n],enumerable:!(i=u(t,n))||i.enumerable});return r};var l=(r=>(t,e)=>r&&r.get(t)||(e=c(s({}),t,1),r&&r.set(t,e),e))(typeof WeakMap!="undefined"?new WeakMap:0);var w={};d(w,{isHighSurrogate:()=>p,isLowSurrogate:()=>g});function p(r){if(typeof r=="string")return r.length===0?!1:r.charCodeAt(0)>=55296&&r.charCodeAt(0)<=56319;if(r===void 0)return!1;throw new TypeError(`string-character-is-astral-surrogate/isHighSurrogate(): the input is not string but ${typeof r}`)}function g(r){if(typeof r=="string")return r.length===0?!1:r.charCodeAt(0)>=56320&&r.charCodeAt(0)<=57343;if(r===void 0)return!1;throw new TypeError(`string-character-is-astral-surrogate/isLowSurrogate(): the input is not string but ${typeof r}`)}return l(w);})();
@@ -1,6 +1,7 @@
1
1
  // Quick Take
2
2
 
3
3
  import { strict as assert } from "assert";
4
+
4
5
  import {
5
6
  isHighSurrogate,
6
7
  isLowSurrogate,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "string-character-is-astral-surrogate",
3
- "version": "2.0.7",
3
+ "version": "2.0.10",
4
4
  "description": "Tells, is given character a part of astral character, specifically, a high and low surrogate",
5
5
  "keywords": [
6
6
  "astral",
@@ -37,88 +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": "{ isHighSurrogate, isLowSurrogate }",
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-node-resolve": "^13.0.6",
101
- "@rollup/plugin-strip": "^2.1.0",
102
- "@rollup/plugin-typescript": "^8.3.0",
103
- "@types/node": "^16.11.10",
104
- "@types/tap": "^15.0.5",
105
- "@typescript-eslint/eslint-plugin": "^5.5.0",
106
- "@typescript-eslint/parser": "^5.5.0",
107
- "core-js": "^3.19.2",
108
- "cross-env": "^7.0.3",
109
- "eslint": "^8.3.0",
110
- "lect": "^0.18.7",
111
- "rollup": "^2.60.1",
112
- "rollup-plugin-ascii": "^0.0.3",
113
- "rollup-plugin-banner": "^0.2.1",
114
- "rollup-plugin-cleanup": "^3.2.1",
115
- "rollup-plugin-dts": "^4.0.1",
116
- "rollup-plugin-terser": "^7.0.2",
117
- "tap": "^15.1.5",
118
- "tslib": "^2.3.1",
119
- "typescript": "^4.5.2"
120
- },
121
- "engines": {
122
- "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
123
69
  }
124
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;\n isHighSurrogate,\n isLowSurrogate,\n&#x7D; from \"string-character-is-astral-surrogate\";\n\n// 🧢 = \\uD83E\\uDDE2\n\nassert.equal(isHighSurrogate(\"\\uD83E\"), true);\n// the first character, high surrogate of the cap is indeed a high surrogate\n\nassert.equal(isHighSurrogate(\"\\uDDE2\"), false);\n// the second character, low surrogate of the cap is NOT a high surrogate\n\nassert.equal(isLowSurrogate(\"\\uD83E\"), false);\n// the first character, high surrogate of the cap is NOT a low surrogate\n// it's a high surrogate\n\nassert.equal(isLowSurrogate(\"\\uDDE2\"), true);\n// the second character, low surrogate of the cap is indeed a low surrogate"}}