@augment-vir/common 31.31.0 → 31.32.1

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/dist/index.d.ts CHANGED
@@ -82,7 +82,6 @@ export * from './augments/string/casing/kebab-and-camel.js';
82
82
  export * from './augments/string/comma.js';
83
83
  export * from './augments/string/indent.js';
84
84
  export * from './augments/string/join.js';
85
- export * from './augments/string/match.js';
86
85
  export * from './augments/string/prefix.js';
87
86
  export * from './augments/string/remove-duplicate-characters.js';
88
87
  export * from './augments/string/replace.js';
package/dist/index.js CHANGED
@@ -82,7 +82,6 @@ export * from './augments/string/casing/kebab-and-camel.js';
82
82
  export * from './augments/string/comma.js';
83
83
  export * from './augments/string/indent.js';
84
84
  export * from './augments/string/join.js';
85
- export * from './augments/string/match.js';
86
85
  export * from './augments/string/prefix.js';
87
86
  export * from './augments/string/remove-duplicate-characters.js';
88
87
  export * from './augments/string/replace.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@augment-vir/common",
3
- "version": "31.31.0",
3
+ "version": "31.32.1",
4
4
  "description": "A collection of augments, helpers types, functions, and classes for any JavaScript environment.",
5
5
  "keywords": [
6
6
  "augment",
@@ -40,8 +40,8 @@
40
40
  "test:web": "virmator --no-deps test web"
41
41
  },
42
42
  "dependencies": {
43
- "@augment-vir/assert": "^31.31.0",
44
- "@augment-vir/core": "^31.31.0",
43
+ "@augment-vir/assert": "^31.32.1",
44
+ "@augment-vir/core": "^31.32.1",
45
45
  "@date-vir/duration": "^7.4.0",
46
46
  "ansi-styles": "^6.2.1",
47
47
  "deepcopy-esm": "^2.1.1",
@@ -1,8 +0,0 @@
1
- /**
2
- * A case insensitive match between strings.
3
- *
4
- * @category String
5
- * @category Package : @augment-vir/common
6
- * @package [`@augment-vir/common`](https://www.npmjs.com/package/@augment-vir/common)
7
- */
8
- export declare function match(haystack: string, needle: string): boolean;
@@ -1,11 +0,0 @@
1
- import { escapeStringForRegExp } from '../regexp/regexp-string.js';
2
- /**
3
- * A case insensitive match between strings.
4
- *
5
- * @category String
6
- * @category Package : @augment-vir/common
7
- * @package [`@augment-vir/common`](https://www.npmjs.com/package/@augment-vir/common)
8
- */
9
- export function match(haystack, needle) {
10
- return !!needle && !!new RegExp(escapeStringForRegExp(needle), 'i').exec(haystack);
11
- }