UNPKG

@getsolara/solara.js

Version:

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

5 lines 243 B
const os = require('os'); module.exports = { name: "$cpuCores", description: "Returns the number of CPU cores available.", takesBrackets: false, execute: async (context, args) => { return os.cpus()?.length.toString() ?? "N/A"; } };