UNPKG
coffee-fmt
Version:
latest (0.12.0)
0.12.0
0.11.0
0.10.2
0.10.1
0.10.0
0.7.0
0.6.3
0.6.2
0.6.1
0.6.0
0.5.2
0.5.1
0.5.0
0.4.2
0.4.1
0.4.0
0.2.0
0.1.4
0.1.3
0.1.2
0.1.0
a `gofmt` inspired Coffeescript formatter/beautifier.
github.com/sterpe/coffee-fmt
sterpe/coffee-fmt
coffee-fmt
/
utils
/
printf.js
10 lines
(7 loc)
•
186 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
var
sprintf =
require
(
'sprintf-js'
).
sprintf
;
exports
.
printf
=
function
(
) {
var
args =
Array
.
prototype
.
slice
.
call
(
arguments
) ;
return
console
.
log
(sprintf.
apply
(sprintf, args)); };