doc: util: add args to format and methods error, puts, print

This commit is contained in:
Kyle Robinson Young 2012-04-23 10:03:36 -07:00 committed by Ben Noordhuis
parent 48cdbffd24
commit d9bad09ede

View File

@ -6,7 +6,7 @@ These functions are in the module `'util'`. Use `require('util')` to access
them.
## util.format()
## util.format(format, [...])
Returns a formatted string using the first argument as a `printf`-like format.
@ -44,6 +44,20 @@ output `string` immediately to `stderr`.
require('util').debug('message on stderr');
## util.error([...])
Same as `util.debug()` except this will output all arguments immediately to
`stderr`.
## util.puts([...])
A synchronous output function. Will block the process and output all arguments
to `stdout` with newlines after each argument.
## util.print([...])
A synchronous output function. Will block the process, cast each argument to a
string then output to `stdout`. Does not place newlines after each argument.
## util.log(string)