Comparing version 0.7.0-canary.20230309T211213 to 0.7.0
@@ -13,3 +13,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.8"; | ||
var version = "0.7.0"; | ||
@@ -16,0 +16,0 @@ // src/errors.ts |
@@ -5,3 +5,3 @@ { | ||
"license": "MIT", | ||
"version": "0.7.0-canary.20230309T211213", | ||
"version": "0.7.0", | ||
"repository": { | ||
@@ -61,2 +61,2 @@ "type": "git", | ||
] | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
474408