This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Obfuscate a plaintext string with a simple rotation algorithm similar to | |
* the rot13 cipher. | |
* @param {[type]} key rotation index between 0 and n | |
* @param {Number} n maximum char that will be affected by the algorithm | |
* @return {[type]} obfuscated string | |
*/ | |
String.prototype.obfs = function(key, n = 126) { | |
// return String itself if the given parameters are invalid | |
if (!(typeof(key) === 'number' && key % 1 === 0) |
NewerOlder