@ztimson/utils 0.26.7 → 0.26.9

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.cjs CHANGED
@@ -1731,6 +1731,10 @@ ${opts.message || this.desc}`;
1731
1731
  if (ipv4 == "1") return "127.0.0.1";
1732
1732
  return ipv4;
1733
1733
  }
1734
+ function reservedIp(ip) {
1735
+ if (ip == "localhost") return true;
1736
+ return /\b(10\.(?:[0-9]{1,3}\.){2}[0-9]{1,3})\b|\b(172\.(?:1[6-9]|2[0-9]|3[0-1])\.(?:[0-9]{1,3}\.)[0-9]{1,3})\b|\b(192\.168\.(?:[0-9]{1,3}\.)[0-9]{1,3})\b/.test(ip);
1737
+ }
1734
1738
  function PE(str, ...args) {
1735
1739
  const combined = [];
1736
1740
  for (let i = 0; i < str.length || i < args.length; i++) {
@@ -2047,6 +2051,10 @@ ${opts.message || this.desc}`;
2047
2051
  return a == b;
2048
2052
  case "!=":
2049
2053
  return a != b;
2054
+ case "+":
2055
+ return a.includes(b);
2056
+ case "-":
2057
+ return !a.includes(b);
2050
2058
  case ">":
2051
2059
  return a > b;
2052
2060
  case ">=":
@@ -2063,7 +2071,7 @@ ${opts.message || this.desc}`;
2063
2071
  return -1 != or.findIndex((p) => {
2064
2072
  const and = p.split("&&").map((p2) => p2.trim()).filter((p2) => !!p2);
2065
2073
  return and.filter((p2) => {
2066
- const prop = /(\S+)\s*(==?|!=|>=|>|<=|<)\s*(\S+)/g.exec(p2);
2074
+ const prop = /(\S+)\s*(==?|!=|\+|-|>=|>|<=|<)\s*(\S+)/g.exec(p2);
2067
2075
  if (prop) {
2068
2076
  const key = Object.keys(target).find((k) => k.toLowerCase() == prop[1].toLowerCase());
2069
2077
  return evalBoolean(dotNotation(target, key || prop[1]), prop[2], JSONAttemptParse(prop[3]));
@@ -2331,6 +2339,7 @@ ${opts.message || this.desc}`;
2331
2339
  exports2.randomHex = randomHex;
2332
2340
  exports2.randomString = randomString;
2333
2341
  exports2.randomStringBuilder = randomStringBuilder;
2342
+ exports2.reservedIp = reservedIp;
2334
2343
  exports2.search = search;
2335
2344
  exports2.sleep = sleep;
2336
2345
  exports2.sleepWhile = sleepWhile;