UNPKG

offtext

Version:

Perform weird actions on your strings

16 lines 435 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = (str) => { let product = ''; for (const char of str) { const makeUppercase = Math.random() < 0.5; if (makeUppercase) { product += char.toUpperCase(); } else { product += char.toLocaleLowerCase(); } } return product; }; //# sourceMappingURL=genRandomCase.js.map