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/lowerCase.js
T

13 lines
287 B
JavaScript

'use strict';
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
const words = require('./words.js');
function lowerCase(str) {
const words$1 = words.words(str);
return words$1.map(word => word.toLowerCase()).join(' ');
}
exports.lowerCase = lowerCase;