New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

regexp-range

Package Overview
Dependencies
Maintainers
1
Versions
37
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

regexp-range - npm Package Compare versions

Comparing version 1.0.24 to 1.0.26

39

CHANGELOG.md

@@ -6,2 +6,41 @@ # Change Log

## [1.0.26](https://github.com/bluelovers/ws-regexp/compare/regexp-range@1.0.24...regexp-range@1.0.26) (2021-06-21)
### 💎 Styles
* use importHelpers ([6bedeef](https://github.com/bluelovers/ws-regexp/commit/6bedeefcb325c049cbdfaf3ba3fc3afa7140893d))
### ♻️ Chores
* . ([8596a48](https://github.com/bluelovers/ws-regexp/commit/8596a480489c1b01c3d0c9841249eb622fefa538))
* update deps ([3633a97](https://github.com/bluelovers/ws-regexp/commit/3633a97e8014049c163d860dc07d3a5e0d02416f))
### 🔖 Miscellaneous
* . ([2fc9875](https://github.com/bluelovers/ws-regexp/commit/2fc9875ea48136c70e1dee845d4e1b14eca184a9))
## [1.0.25](https://github.com/bluelovers/ws-regexp/compare/regexp-range@1.0.24...regexp-range@1.0.25) (2021-06-21)
### 💎 Styles
* use importHelpers ([6bedeef](https://github.com/bluelovers/ws-regexp/commit/6bedeefcb325c049cbdfaf3ba3fc3afa7140893d))
### ♻️ Chores
* . ([8596a48](https://github.com/bluelovers/ws-regexp/commit/8596a480489c1b01c3d0c9841249eb622fefa538))
* update deps ([3633a97](https://github.com/bluelovers/ws-regexp/commit/3633a97e8014049c163d860dc07d3a5e0d02416f))
## [1.0.24](https://github.com/bluelovers/ws-regexp/compare/regexp-range@1.0.23...regexp-range@1.0.24) (2021-02-04)

@@ -8,0 +47,0 @@

13

index.d.ts

@@ -8,15 +8,2 @@ /**

}): string;
declare namespace matchRange {
export var matchRange: typeof import(".");
export var getOptions: typeof import("./src/core").getOptions;
export var toRegExpString: typeof import("./src/core").toRegExpString;
export var TABLE_RANGE: {
chinese: string[][];
chinese2: string[][];
circle: string[][];
};
export var fillRange: typeof import("./src/core").fillRange;
var _a: typeof import(".");
export { _a as default };
}
declare function matchRange(from: any, to: any, options?: IOptions): string[];

@@ -23,0 +10,0 @@ declare namespace matchRange {

11

package.json
{
"name": "regexp-range",
"version": "1.0.24",
"version": "1.0.26",
"description": "create regex class range string `[一-十]` `[⓪-㊿]` ...",

@@ -40,4 +40,4 @@ "keywords": [

"npm:publish:lerna": "npx lerna publish --yes --cd-version patch",
"preversion": "yarn run test",
"prepublish:lockfile": "npx sync-lockfile .",
"prepublishOnly": "yarn run test",
"postpublish_": "git commit -m \"chore(release): publish\" .",

@@ -50,7 +50,8 @@ "ncu": "npx yarn-tool ncu -u",

"dependencies": {
"@lazy-cjk/japanese": "^1.2.12",
"@lazy-cjk/japanese": "^1.2.15",
"array-hyper-unique": "^1.1.9",
"fill-range": "^7.0.1"
"fill-range": "^7.0.1",
"tslib": "^2.3.0"
},
"gitHead": "33a8f6d5c534be3cb26103ccfd03cdbcfc7aaa66"
"gitHead": "1aa0f123c804bfd33203716a9c7d11804c2e411e"
}

@@ -5,9 +5,7 @@ "use strict";

*/
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.getOptions = exports.fillRange = exports.toRegExpString = exports.matchRange = exports.TABLE_RANGE = void 0;
const fill_range_1 = __importDefault(require("fill-range"));
const table_1 = __importDefault(require("./table"));
const tslib_1 = require("tslib");
const fill_range_1 = tslib_1.__importDefault(require("fill-range"));
const table_1 = tslib_1.__importDefault(require("./table"));
exports.TABLE_RANGE = table_1.default;

@@ -14,0 +12,0 @@ const array_hyper_unique_1 = require("array-hyper-unique");

@@ -5,28 +5,7 @@ "use strict";

*/
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
Object.defineProperty(o, "default", { enumerable: true, value: v });
}) : function(o, v) {
o["default"] = v;
});
var __importStar = (this && this.__importStar) || function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
__setModuleDefault(result, mod);
return result;
};
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.table_range = void 0;
const chinese_1 = __importStar(require("./table/chinese"));
const circle_1 = __importDefault(require("./table/circle"));
const tslib_1 = require("tslib");
const chinese_1 = tslib_1.__importStar(require("./table/chinese"));
const circle_1 = tslib_1.__importDefault(require("./table/circle"));
exports.table_range = {

@@ -33,0 +12,0 @@ chinese: chinese_1.default,

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc