mirror of
https://github.com/samsonjs/format.git
synced 2026-03-25 08:45:53 +00:00
5 lines
245 B
JavaScript
5 lines
245 B
JavaScript
var format = require('./format');
|
|
format.extendNativeStrings();
|
|
'hello'.printf();
|
|
'hello %s'.printf('sami');
|
|
'b: %b\nc: %c\nd: %d\nf: %f\no: %o\ns: %s\nx: %x\nX: %X'.printf(42, 65, 42*42, 42*42*42/1000000000, 255, 'sami', 0xfeedface, 0xc0ffee);
|