Comparing version 0.6.6 to 0.6.7
@@ -14,3 +14,3 @@ "use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _nullishCoalesce(lhs, rhsFn) { if (lhs != null) { return lhs; } else { return rhsFn(); } } function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; } | ||
var name = "abitype"; | ||
var version = "0.6.6"; | ||
var version = "0.6.7"; | ||
@@ -17,0 +17,0 @@ // src/errors.ts |
@@ -5,3 +5,3 @@ { | ||
"license": "MIT", | ||
"version": "0.6.6", | ||
"version": "0.6.7", | ||
"repository": { | ||
@@ -12,3 +12,5 @@ "type": "git", | ||
"ethereum": "wagmi-dev.eth", | ||
"types": "dist/index.d.ts", | ||
"main": "dist/index.js", | ||
"module": "dist/index.mjs", | ||
"exports": { | ||
@@ -15,0 +17,0 @@ ".": { |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
455263