Spaces:
Runtime error
Runtime error
Aryan Mishra
feat: initial commit - Multilingual ABSA project setup with 6 phases, 36 requirements
a6b96c2 | ; | |
| /** | |
| * Command Roster Module | |
| * | |
| * Read-only helper for discovering canonical commands/gsd command stems and | |
| * applying the shared GSD slash-command namespace transform. | |
| */ | |
| // eslint-disable-next-line @typescript-eslint/no-require-imports | |
| const slashCommandTransformer = require('../../../scripts/fix-slash-commands.cjs'); | |
| function readGsdCommandNames() { | |
| return slashCommandTransformer.readCmdNames(); | |
| } | |
| module.exports = { | |
| readGsdCommandNames, | |
| transformContentToHyphen: slashCommandTransformer.transformContentToHyphen, | |
| transformContent: slashCommandTransformer.transformContent, | |
| buildPattern: slashCommandTransformer.buildPattern, | |
| buildColonPattern: slashCommandTransformer.buildColonPattern, | |
| }; | |