This repository has been archived on 2026-03-28. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
StasisWarden-Legacy/node_modules/es-toolkit/dist/string/constantCase.mjs
T

9 lines
189 B
JavaScript

import { words } from './words.mjs';
function constantCase(str) {
const words$1 = words(str);
return words$1.map(word => word.toUpperCase()).join('_');
}
export { constantCase };