SourceTermAnalysisSystem_vue/node_modules/jsts/java/lang/Character.js
2026-05-15 10:22:44 +08:00

10 lines
170 B
JavaScript

export default class Character {
static isWhitespace(c) {
return ((c <= 32 && c >= 0) || c === 127)
}
static toUpperCase(c) {
return c.toUpperCase()
}
}