swapCase.js 225 B

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