Skip to content
tiny javascript sprintf
JavaScript
Branch: master
Clone or download

Latest commit

Fetching latest commit…
Cannot retrieve the latest commit at this time.

Files

Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
.gitignore
Makefile
README.md
package.json
s.js
test.js

README.md

s.js: minimalistic javascript sprintf().

// standalone
s('http://%s:%d', 'localhost', 40)
s('got %j', { this: 'will be JSON.stringified' })

// extend String.prototype
s.extend();
'http://%s:%d'.s('localhost', 40);
  • Node/browser compatible. Published as s on npm.
  • Opt-in String.prototype extension
  • Only supports %s and %d. Escape % as %%.
You can’t perform that action at this time.