@tamagui/core 1.111.12 → 1.111.13

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.
@@ -1004,6 +1004,7 @@ var require_index_native2 = __commonJS({
1004
1004
  var cache = /* @__PURE__ */ new Map(), simpleHash = function(str) {
1005
1005
  var hashMin = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : 10;
1006
1006
  if (cache.has(str)) return cache.get(str);
1007
+ str[0] === "v" && str.startsWith("var(") && (str = str.slice(6, str.length - 1));
1007
1008
  for (var hash = 0, valids = "", added = 0, len = str.length, i = 0; i < len; i++) {
1008
1009
  if (hashMin !== "strict" && added <= hashMin) {
1009
1010
  var char = str.charCodeAt(i);