/** * Copyright (c) OpenLens Authors. All rights reserved. * Licensed under MIT License. See LICENSE in root directory for more information. */ import type { Result } from "./result"; export const json = { parse: (input: string): Result => { try { return { callWasSuccessful: true, response: JSON.parse(input) as unknown, } } catch (error) { return { callWasSuccessful: false, error: error as Error, } } }, };