UNPKG

@sx-bet/sportx-js

Version:

Provides an easy to use API to interact with the SportX relayer.

15 lines 295 B
export function tryParseJson(maybeJson) { try { return { result: JSON.parse(maybeJson), valid: true, }; } catch (e) { return { result: undefined, valid: false, }; } } //# sourceMappingURL=misc.js.map