UNPKG

underscore.string

Version:

String manipulation extensions for Underscore.js javascript library.

8 lines (6 loc) 225 B
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(); }); };