UNPKG

koishi-plugin-beatsaber-bot

Version:

一个 用于 BeatSaber 的 koishi Bot 插件

19 lines (18 loc) 404 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.convertDiff = void 0; const diffMap = { "E": "Easy", "N": "Normal", "H": "Hard", "EX": "Expert", "EP": "ExpertPlus", "EX+": "ExpertPlus", }; const convertDiff = (diff) => { if (!diff) { return diff; } return diffMap[diff.toUpperCase()]; }; exports.convertDiff = convertDiff;