Files
2025-07-24 17:21:45 +08:00

8 lines
225 B
JavaScript

var makeString = require('./helper/makeString');
module.exports = function swapCase(str) {
return makeString(str).replace(/\S/g, function(c) {
return c === c.toUpperCase() ? c.toLowerCase() : c.toUpperCase();
});
};