{"_id":"simple-fmt","_rev":"82672","name":"simple-fmt","description":"maximally minimal string formatting library","dist-tags":{"latest":"0.1.0"},"maintainers":[{"name":"olov","email":"olov.lassus@gmail.com"}],"time":{"modified":"2021-06-03T10:26:21.000Z","created":"2013-04-19T12:20:16.481Z","0.1.0":"2013-04-19T12:20:16.481Z"},"users":{"datsilencer":true},"author":{"name":"Olov Lassus","email":"olov.lassus@gmail.com"},"repository":{"type":"git","url":"https://github.com/olov/simple-fmt.git"},"versions":{"0.1.0":{"name":"simple-fmt","version":"0.1.0","description":"maximally minimal string formatting library","main":"simple-fmt.js","repository":{"type":"git","url":"https://github.com/olov/simple-fmt.git"},"keywords":["fmt","format","formatting","string","template"],"scripts":{"test":"tap test/*.js"},"devDependencies":{"tap":"~0.4.0"},"author":{"name":"Olov Lassus","email":"olov.lassus@gmail.com"},"license":"MIT","readmeFilename":"README.md","_id":"simple-fmt@0.1.0","dist":{"shasum":"191bf566a59e6530482cb25ab53b4a8dc85c3a6b","size":2287,"noattachment":false,"key":"/simple-fmt/-/simple-fmt-0.1.0.tgz","tarball":"http://registry.cnpm.dingdandao.com/simple-fmt/download/simple-fmt-0.1.0.tgz"},"_resolved":"../simple-fmt.tgz","_from":"../simple-fmt.tgz","_npmVersion":"1.2.18","_npmUser":{"name":"olov","email":"olov.lassus@gmail.com"},"maintainers":[{"name":"olov","email":"olov.lassus@gmail.com"}],"directories":{},"publish_time":1366374016481,"_cnpm_publish_time":1366374016481,"_hasShrinkwrap":false}},"readme":"# simple-fmt.js\nA maximally minimal string formatting library. Use it to make your code more\nreadable compared to plain old string concatenation using `+`. The code is\nshorter than the MIT license text so it doesn't hog you down and you can use\nit everywhere. Works in node and browsers.\n\n\n\n## Usage\n```javascript\nvar fmt = require(\"simple-fmt\");\nconsole.log(fmt(\"hello {0} of age {1}\", name, age));\n```\n\ninstead of\n\n```javascript\nconsole.log(\"hello \" + name + \" of age \" + age);\n```\n\nbecause string formatting with `+` makes your eyes bleed and fingers hurt.\n\n\nThere's also `fmt.obj(string, obj)` and `fmt.repeat(string, n)`:\n```javascript\nvar o = {name: \"xyz\", age: 42};\nfmt.obj(\"hello {name} of age {age}\", obj);\nfmt.repeat(\"*\", 3); // \"***\"\n```\n\nThat's it.\n\n\n\n## Installation\n\n### Node\nInstall using npm\n\n    npm install simple-fmt\n\n```javascript\nvar fmt = require(\"simple-fmt\");\n```\n\n### Browser\nClone the repo and include it in a script tag\n\n    git clone https://github.com/olov/simple-fmt.git\n\n```html\n<script src=\"simple-fmt/simple-fmt.js\"></script>\n```\n","_attachments":{},"readmeFilename":"README.md","license":"MIT"}