@cjser/non-ascii 2.0.0-cjser.2

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.
@@ -0,0 +1,26 @@
1
+ var __defProp = Object.defineProperty;
2
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
3
+ var __getOwnPropNames = Object.getOwnPropertyNames;
4
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
5
+ var __export = (target, all) => {
6
+ for (var name in all)
7
+ __defProp(target, name, { get: all[name], enumerable: true });
8
+ };
9
+ var __copyProps = (to, from, except, desc) => {
10
+ if (from && typeof from === "object" || typeof from === "function") {
11
+ for (let key of __getOwnPropNames(from))
12
+ if (!__hasOwnProp.call(to, key) && key !== except)
13
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
14
+ }
15
+ return to;
16
+ };
17
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
18
+
19
+ // packages/@cjser/non-ascii.tmp-26-1778153710016/index.js
20
+ var index_exports = {};
21
+ __export(index_exports, {
22
+ default: () => index_default
23
+ });
24
+ module.exports = __toCommonJS(index_exports);
25
+ var nonAscii = /[^\u0000-\u007F]+/;
26
+ var index_default = nonAscii;
package/index.js ADDED
@@ -0,0 +1,3 @@
1
+ const nonAscii = /[^\u0000-\u007F]+/; // eslint-disable-line no-control-regex
2
+
3
+ export default nonAscii;
package/license ADDED
@@ -0,0 +1,9 @@
1
+ MIT License
2
+
3
+ Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
6
+
7
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
8
+
9
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
package/package.json ADDED
@@ -0,0 +1,62 @@
1
+ {
2
+ "name": "@cjser/non-ascii",
3
+ "version": "2.0.0-cjser.2",
4
+ "description": "Regular expression for matching non-ASCII characters",
5
+ "license": "MIT",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://code.moenext.com/3rdeye/cjser.git"
9
+ },
10
+ "funding": "https://github.com/sponsors/sindresorhus",
11
+ "author": {
12
+ "name": "Sindre Sorhus",
13
+ "email": "sindresorhus@gmail.com",
14
+ "url": "https://sindresorhus.com"
15
+ },
16
+ "type": "module",
17
+ "exports": {
18
+ "require": "./dist-cjser/index.cjs",
19
+ "default": "./index.js"
20
+ },
21
+ "engines": {
22
+ "node": ">=12"
23
+ },
24
+ "scripts": {
25
+ "test": "xo && ava"
26
+ },
27
+ "files": [
28
+ "index.js",
29
+ "dist-cjser"
30
+ ],
31
+ "keywords": [
32
+ "ascii",
33
+ "unicode",
34
+ "regex",
35
+ "regexp",
36
+ "regular",
37
+ "expression",
38
+ "match",
39
+ "test"
40
+ ],
41
+ "devDependencies": {
42
+ "ava": "^3.15.0",
43
+ "xo": "^0.38.2"
44
+ },
45
+ "main": "./dist-cjser/index.cjs",
46
+ "cjser": {
47
+ "sourceVersion": "2.0.0",
48
+ "cjserVersion": 2,
49
+ "original": {
50
+ "name": "non-ascii",
51
+ "version": "2.0.0",
52
+ "exports": "./index.js",
53
+ "repository": "sindresorhus/non-ascii",
54
+ "files": [
55
+ "index.js"
56
+ ],
57
+ "scripts": {
58
+ "test": "xo && ava"
59
+ }
60
+ }
61
+ }
62
+ }
package/readme.md ADDED
@@ -0,0 +1,26 @@
1
+ # non-ascii
2
+
3
+ > Regular expression for matching non-ASCII characters
4
+
5
+ ## Install
6
+
7
+ ```
8
+ $ npm install non-ascii
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ ```js
14
+ import nonAscii from 'non-ascii';
15
+
16
+ nonAscii.test('hællæ');
17
+ //=> true
18
+
19
+ nonAscii.test('unicorn');
20
+ //=> false
21
+ ```
22
+
23
+ ## cjser
24
+
25
+ This package is a CommonJS-compatible build generated by cjser for projects that still need `require()` support. The source version matches the original npm package version, with a cjser prerelease suffix for this generated build.
26
+ Original repository: https://github.com/sindresorhus/non-ascii