UNPKG

@getsolara/solara.js

Version:

A lightweight and modular Discord bot framework built on discord.js v14, with truly optional feature packages.

10 lines 320 B
module.exports = { name: "$isValidJson", description: "Checks if a string is valid JSON. Args: text", takesBrackets: true, execute: async (context, args) => { if (!args[0]) return "false"; try { JSON.parse(args[0]); return "true"; } catch (e) { return "false"; } } };