UNPKG

strangecase

Version:

formats a given strings casing probabilistic by a given weight

8 lines (6 loc) 262 B
var strangeCase = require('../index'); var testText = 'this is a very long test that should test.' console.log(strangeCase(testText)) console.log(strangeCase(testText, 0.1)) console.log(strangeCase(testText, 0.6)) console.log(strangeCase(testText, 0.8))