Members

# isArray static

# isBuffer static

# isError static

Methods

# format (f) → string static

Returns a formatted string using the first argument as a printf-like format.

The first argument is a string that contains zero or more placeholders. Each placeholder is replaced with the converted value from its corresponding argument. Supported placeholders are:

  • %s - String.
  • %d - Number (both integer and float).
  • %j - JSON.
  • % - single percent sign ('%'). This does not consume an argument.

If the placeholder does not have a corresponding argument, the placeholder is not replaced:

 util.format('%s:%s', 'foo'); // 'foo:%s'

If there are more arguments than placeholders, the extra arguments are converted to strings with util.inspect() and these strings are concatenated, delimited by a space:

 util.format('%s:%s', 'foo', 'bar', 'baz'); // 'foo:bar baz'

If the first argument is not a format string then util.format() returns a string that is the concatenation of all its arguments separated by spaces. Each argument is converted to a string with util.inspect():

 util.format(1, 2, 3); // '1 2 3'

Arguments:
  • f:

# inherits (ctorfunction, superCtorfunction) static

Inherit the prototype methods from one constructor into another.

The Function.prototype.inherits from lang.js rewritten as a standalone function (not on Function.prototype). NOTE: If this file is to be loaded during bootstrapping this function needs to be rewritten using some native functions as prototype setup using normal JavaScript does not work as expected during bootstrapping (see mirror.js in r114903).

Arguments:
  • ctor: function

    Constructor function which needs to inherit the prototype.

  • superCtor: function

    Constructor function to inherit prototype from.

# log (msgString) static

Output with timestamp on stdout.

Arguments:

# debug (msg*) inner deprecated

Use console.error instead

Will block the process and output string immediately to stderr:

 require('util').debug('message on stderr');

Arguments:
  • msg: *

# error (arguments*) inner deprecated

Use console.error instead

Same as util#debug except this will output all arguments immediately to stderr.

Arguments:
  • arguments: *

# isBoolean (arg) → boolean inner

Arguments:
  • arg:

# isDate (d) → boolean inner

Arguments:
  • d:

# isFunction (arg) → boolean inner

Arguments:
  • arg:

# isNull (arg) → boolean inner

Arguments:
  • arg:

# isNullOrUndefined (arg) → boolean inner

Arguments:
  • arg:

# isNumber (arg) → boolean inner

Arguments:
  • arg:

# isObject (arg) → boolean inner

Arguments:
  • arg:

# isPrimitive (arg) → boolean inner

Arguments:
  • arg:

# isRegExp (re) → boolean inner

Arguments:
  • re:

# isString (arg) → boolean inner

Arguments:
  • arg:

# isSymbol (arg) → boolean inner

Arguments:
  • arg:

# isUndefined (arg) → boolean inner

Arguments:
  • arg:

# print (arguments*) inner deprecated

Use console.log instead

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.print('one', 'two', 3); // onetwo3

Arguments:
  • arguments: *

# puts (arguments*) inner deprecated

Use console.log instead

A synchronous output function. Will block the process and output all arguments to stdout with newlines after each argument.

 util.puts('one', 'two', 3); // one
                             // two
                             // 3

Arguments:
  • arguments: *