Files
30-seconds-of-code/node_modules/underscore.string/swapCase.js
2019-08-20 15:52:05 +02: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();
});
};