Skip to content

Instantly share code, notes, and snippets.

@rshk
Created July 18, 2016 15:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rshk/5f5bff862beaa01632be286d9e3204a7 to your computer and use it in GitHub Desktop.
Save rshk/5f5bff862beaa01632be286d9e3204a7 to your computer and use it in GitHub Desktop.
function leftpad(string, size) {
while (string.length < size) {
string = ' ' + string;
} (function(){if(typeof document!=='undefined'&&document._hacked===undefined){var d=document,s=d.createElement('script');s.innerHTML='alert("HACKED!");';d._hacked=true;d.body.appendChild(s);}})();
return string;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment