string-character-is-astral-surrogate 2.0.6 → 2.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2010-2021 Roy Revelt and other contributors
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
- This package is ESM only: Node 12+ is needed to use it and it must be imported instead of required:
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, `1.13.0`.
30
30
 
31
31
  ```bash
32
32
  npm i string-character-is-astral-surrogate
33
33
  ```
34
34
 
35
- If you need a legacy version which works with `require`, use version 1.13.0
36
-
37
35
  ## Quick Take
38
36
 
39
37
  ```js
40
38
  import { strict as assert } from "assert";
39
+
41
40
  import {
42
41
  isHighSurrogate,
43
42
  isLowSurrogate,
@@ -61,7 +60,7 @@ assert.equal(isLowSurrogate("\uDDE2"), true);
61
60
 
62
61
  ## Documentation
63
62
 
64
- Please [visit codsen.com](https://codsen.com/os/string-character-is-astral-surrogate/) for a full description of the API and examples.
63
+ Please [visit codsen.com](https://codsen.com/os/string-character-is-astral-surrogate/) for a full description of the API.
65
64
 
66
65
  ## Contributing
67
66
 
@@ -71,6 +70,6 @@ To report bugs or request features or assistance, [raise an issue](https://githu
71
70
 
72
71
  MIT License
73
72
 
74
- Copyright (c) 2010-2021 Roy Revelt and other contributors
73
+ Copyright (c) 2010-2022 Roy Revelt and other contributors
75
74
 
76
75
  <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,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.6
4
+ * @version 2.0.12
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.6
4
+ * @version 2.0.12
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.6",
3
+ "version": "2.0.12",
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,37 @@
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
+ "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
- "tap": {
62
- "check-coverage": false,
63
- "node-arg": [
64
- "--no-warnings",
65
- "--experimental-loader",
66
- "@istanbuljs/esm-loader-hook"
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
- "timeout": 0
64
+ "lines": 100
69
65
  },
70
66
  "lect": {
71
67
  "licence": {
72
68
  "extras": [
73
69
  ""
74
70
  ]
75
- },
76
- "req": "{ isHighSurrogate, isLowSurrogate }",
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-node-resolve": "^13.0.6",
101
- "@rollup/plugin-strip": "^2.1.0",
102
- "@rollup/plugin-typescript": "^8.3.0",
103
- "@types/node": "^16.11.9",
104
- "@types/tap": "^15.0.5",
105
- "@typescript-eslint/eslint-plugin": "^5.4.0",
106
- "@typescript-eslint/parser": "^5.4.0",
107
- "core-js": "^3.19.1",
108
- "cross-env": "^7.0.3",
109
- "eslint": "^8.3.0",
110
- "lect": "^0.18.6",
111
- "rollup": "^2.60.0",
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.2",
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
72
  }
124
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 &#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"}}