array-includes-with-glob 4.1.5 → 5.0.0
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/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,16 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# 5.0.0 (2022-12-01)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- drop Node v12 support; minimum version requirement now is v14.18 and above ([c8049e8](https://github.com/codsen/codsen/commit/c8049e82a5844d3f72587740f1cc74e3c9020d22))
|
|
11
|
+
|
|
12
|
+
### BREAKING CHANGES
|
|
13
|
+
|
|
14
|
+
- Minimum supported Node version is v14.18; we're dropping v12 support
|
|
15
|
+
|
|
6
16
|
# 4.1.0 (2022-08-12)
|
|
7
17
|
|
|
8
18
|
### Features
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @name array-includes-with-glob
|
|
3
3
|
* @fileoverview Like _.includes but with wildcards
|
|
4
|
-
* @version
|
|
4
|
+
* @version 5.0.0
|
|
5
5
|
* @author Roy Revelt, Codsen Ltd
|
|
6
6
|
* @license MIT
|
|
7
7
|
* {@link https://codsen.com/os/array-includes-with-glob/}
|
|
8
8
|
*/
|
|
9
9
|
|
|
10
|
-
function u(e){if(typeof e!="string")throw new TypeError("Expected a string");return e.replace(/[|\\{}()[\]^$+*?.]/g,"\\$&").replace(/-/g,"\\x2d")}var y=new Map,f=(e,r)=>{if(!Array.isArray(e))switch(typeof e){case"string":e=[e];break;case"undefined":e=[];break;default:throw new TypeError(`Expected '${r}' to be a string or an array, but got a type of '${typeof e}'`)}return e.filter(t=>{if(typeof t!="string"){if(typeof t>"u")return!1;throw new TypeError(`Expected '${r}' to be an array of strings, but found a type of '${typeof t}' in the array`)}return!0})},h=(e,r)=>{r={caseSensitive:!1,...r};let t=e+JSON.stringify(r);if(y.has(t))return y.get(t);let s=e[0]==="!";s&&(e=e.slice(1)),e=u(e).replace(/\\\*/g,"[\\s\\S]*");let n=new RegExp(`^${e}$`,r.caseSensitive?"":"i");return n.negated=s,y.set(t,n),n},m=(e,r,t,s)=>{if(e=f(e,"inputs"),r=f(r,"patterns"),r.length===0)return[];r=r.map(a=>h(a,t));let{allPatterns:n}=t||{},i=[];for(let a of e){let c,p=[...r].fill(!1);for(let[o,l]of r.entries())if(l.test(a)&&(p[o]=!0,c=!l.negated,!c))break;if(!(c===!1||c===void 0&&r.some(o=>!o.negated)||n&&p.some((o,l)=>!o&&!r[l].negated))&&(i.push(a),s))break}return i};function d(e,r,t){return m(e,r,t,!0).length>0}var g="
|
|
10
|
+
function u(e){if(typeof e!="string")throw new TypeError("Expected a string");return e.replace(/[|\\{}()[\]^$+*?.]/g,"\\$&").replace(/-/g,"\\x2d")}var y=new Map,f=(e,r)=>{if(!Array.isArray(e))switch(typeof e){case"string":e=[e];break;case"undefined":e=[];break;default:throw new TypeError(`Expected '${r}' to be a string or an array, but got a type of '${typeof e}'`)}return e.filter(t=>{if(typeof t!="string"){if(typeof t>"u")return!1;throw new TypeError(`Expected '${r}' to be an array of strings, but found a type of '${typeof t}' in the array`)}return!0})},h=(e,r)=>{r={caseSensitive:!1,...r};let t=e+JSON.stringify(r);if(y.has(t))return y.get(t);let s=e[0]==="!";s&&(e=e.slice(1)),e=u(e).replace(/\\\*/g,"[\\s\\S]*");let n=new RegExp(`^${e}$`,r.caseSensitive?"":"i");return n.negated=s,y.set(t,n),n},m=(e,r,t,s)=>{if(e=f(e,"inputs"),r=f(r,"patterns"),r.length===0)return[];r=r.map(a=>h(a,t));let{allPatterns:n}=t||{},i=[];for(let a of e){let c,p=[...r].fill(!1);for(let[o,l]of r.entries())if(l.test(a)&&(p[o]=!0,c=!l.negated,!c))break;if(!(c===!1||c===void 0&&r.some(o=>!o.negated)||n&&p.some((o,l)=>!o&&!r[l].negated))&&(i.push(a),s))break}return i};function d(e,r,t){return m(e,r,t,!0).length>0}var g="5.0.0";var E=g,b={arrayVsArrayAllMustBeFound:"any",caseSensitive:!0};function M(e,r,t){if(!e.length||!r.length)return!1;let s={...b,...t},n=typeof e=="string"?[e]:Array.from(e);return typeof r=="string"?n.some(i=>d(i,r,{caseSensitive:s.caseSensitive})):s.arrayVsArrayAllMustBeFound==="any"?r.some(i=>n.some(a=>d(a,i,{caseSensitive:s.caseSensitive}))):r.every(i=>n.some(a=>d(a,i,{caseSensitive:s.caseSensitive})))}export{b as defaults,M as includesWithGlob,E as version};
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @name array-includes-with-glob
|
|
3
3
|
* @fileoverview Like _.includes but with wildcards
|
|
4
|
-
* @version
|
|
4
|
+
* @version 5.0.0
|
|
5
5
|
* @author Roy Revelt, Codsen Ltd
|
|
6
6
|
* @license MIT
|
|
7
7
|
* {@link https://codsen.com/os/array-includes-with-glob/}
|
|
8
8
|
*/
|
|
9
9
|
|
|
10
|
-
"use strict";var arrayIncludesWithGlob=(()=>{var u=Object.defineProperty;var S=Object.getOwnPropertyDescriptor;var
|
|
10
|
+
"use strict";var arrayIncludesWithGlob=(()=>{var u=Object.defineProperty;var S=Object.getOwnPropertyDescriptor;var j=Object.getOwnPropertyNames,h=Object.getOwnPropertySymbols;var x=Object.prototype.hasOwnProperty,k=Object.prototype.propertyIsEnumerable;var m=(r,e,t)=>e in r?u(r,e,{enumerable:!0,configurable:!0,writable:!0,value:t}):r[e]=t,c=(r,e)=>{for(var t in e||(e={}))x.call(e,t)&&m(r,t,e[t]);if(h)for(var t of h(e))k.call(e,t)&&m(r,t,e[t]);return r};var A=(r,e)=>{for(var t in e)u(r,t,{get:e[t],enumerable:!0})},E=(r,e,t,n)=>{if(e&&typeof e=="object"||typeof e=="function")for(let s of j(e))!x.call(r,s)&&s!==t&&u(r,s,{get:()=>e[s],enumerable:!(n=S(e,s))||n.enumerable});return r};var M=r=>E(u({},"__esModule",{value:!0}),r);var B={};A(B,{defaults:()=>w,includesWithGlob:()=>V,version:()=>F});function p(r){if(typeof r!="string")throw new TypeError("Expected a string");return r.replace(/[|\\{}()[\]^$+*?.]/g,"\\$&").replace(/-/g,"\\x2d")}var f=new Map,b=(r,e)=>{if(!Array.isArray(r))switch(typeof r){case"string":r=[r];break;case"undefined":r=[];break;default:throw new TypeError(`Expected '${e}' to be a string or an array, but got a type of '${typeof r}'`)}return r.filter(t=>{if(typeof t!="string"){if(typeof t>"u")return!1;throw new TypeError(`Expected '${e}' to be an array of strings, but found a type of '${typeof t}' in the array`)}return!0})},$=(r,e)=>{e=c({caseSensitive:!1},e);let t=r+JSON.stringify(e);if(f.has(t))return f.get(t);let n=r[0]==="!";n&&(r=r.slice(1)),r=p(r).replace(/\\\*/g,"[\\s\\S]*");let s=new RegExp(`^${r}$`,e.caseSensitive?"":"i");return s.negated=n,f.set(t,s),s},R=(r,e,t,n)=>{if(r=b(r,"inputs"),e=b(e,"patterns"),e.length===0)return[];e=e.map(a=>$(a,t));let{allPatterns:s}=t||{},i=[];for(let a of r){let l,g=[...e].fill(!1);for(let[o,d]of e.entries())if(d.test(a)&&(g[o]=!0,l=!d.negated,!l))break;if(!(l===!1||l===void 0&&e.some(o=>!o.negated)||s&&g.some((o,d)=>!o&&!e[d].negated))&&(i.push(a),n))break}return i};function y(r,e,t){return R(r,e,t,!0).length>0}var v="5.0.0";var F=v,w={arrayVsArrayAllMustBeFound:"any",caseSensitive:!0};function V(r,e,t){if(!r.length||!e.length)return!1;let n=c(c({},w),t),s=typeof r=="string"?[r]:Array.from(r);return typeof e=="string"?s.some(i=>y(i,e,{caseSensitive:n.caseSensitive})):n.arrayVsArrayAllMustBeFound==="any"?e.some(i=>s.some(a=>y(a,i,{caseSensitive:n.caseSensitive}))):e.every(i=>s.some(a=>y(a,i,{caseSensitive:n.caseSensitive})))}return M(B);})();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "array-includes-with-glob",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "5.0.0",
|
|
4
4
|
"description": "Like _.includes but with wildcards",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"array",
|
|
@@ -39,6 +39,8 @@
|
|
|
39
39
|
"types": "types/index.d.ts",
|
|
40
40
|
"scripts": {
|
|
41
41
|
"build": "node '../../ops/scripts/esbuild.js' && yarn run dts",
|
|
42
|
+
"cjs-off": "exit 0",
|
|
43
|
+
"cjs-on": "exit 0",
|
|
42
44
|
"dev": "DEV=true node '../../ops/scripts/esbuild.js' && yarn run dts",
|
|
43
45
|
"devtest": "c8 yarn run unit && yarn run examples && yarn run lint",
|
|
44
46
|
"dts": "rollup -c && yarn run prettier 'types/index.d.ts' --write",
|
|
@@ -55,7 +57,7 @@
|
|
|
55
57
|
"unit": "uvu test"
|
|
56
58
|
},
|
|
57
59
|
"engines": {
|
|
58
|
-
"node": "
|
|
60
|
+
"node": ">=14.18.0"
|
|
59
61
|
},
|
|
60
62
|
"c8": {
|
|
61
63
|
"check-coverage": true,
|