Skip to content

Instantly share code, notes, and snippets.

@Quby
Forked from 140bytes/LICENSE.txt
Created July 26, 2011 09:59
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 Quby/1106413 to your computer and use it in GitHub Desktop.
Save Quby/1106413 to your computer and use it in GitHub Desktop.
140byt.es -- Click ↑↑ fork ↑↑ to play!
String.prototype.format = function (
values //Object with values
) {
return this.replace(/\{(.+)\}/g, //RegExp
function (s, prop) { //Property name of value
return values[prop]; //Replace by value
});
};
String.prototype.format=function(a){return this.replace(/\{(.+)\}/g,function(b,c){return a[c]})}
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
Version 2, December 2004
Copyright (C) 2011 YOUR_NAME_HERE <YOUR_URL_HERE>
Everyone is permitted to copy and distribute verbatim or modified
copies of this license document, and changing it is allowed as long
as the name is changed.
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. You just DO WHAT THE FUCK YOU WANT TO.
{
"name": "String.format",
"description": "Simple string format.",
"keywords": [
"string",
"format"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment