UNPKG

@etherspot/modular-sdk

Version:

Etherspot Modular SDK - build with ERC-7579 smart accounts modules

14 lines 253 B
/** * @ignore */ export function parseJson(raw, defaultValue = null) { let result; try { result = JSON.parse(raw); } catch (err) { result = defaultValue; } return result; } //# sourceMappingURL=parse-json.js.map