2012-02-27 20:09:35 +01:00
|
|
|
# util
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2016-07-16 00:35:38 +02:00
|
|
|
> Stability: 2 - Stable
|
2012-03-03 00:14:03 +01:00
|
|
|
|
2016-05-20 18:57:01 +02:00
|
|
|
The `util` module is primarily designed to support the needs of Node.js' own
|
|
|
|
internal APIs. However, many of the utilities are useful for application and
|
|
|
|
module developers as well. It can be accessed using:
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2016-05-20 18:57:01 +02:00
|
|
|
```js
|
|
|
|
const util = require('util');
|
|
|
|
```
|
2015-11-05 16:28:34 +01:00
|
|
|
|
2013-05-22 00:22:05 +02:00
|
|
|
## util.debuglog(section)
|
2016-08-21 11:11:15 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.11.3
|
|
|
|
-->
|
2013-05-22 00:22:05 +02:00
|
|
|
|
2016-05-20 18:57:01 +02:00
|
|
|
* `section` {String} A string identifying the portion of the application for
|
|
|
|
which the `debuglog` function is being created.
|
2013-05-22 00:22:05 +02:00
|
|
|
* Returns: {Function} The logging function
|
|
|
|
|
2016-05-20 18:57:01 +02:00
|
|
|
The `util.debuglog()` method is used to create a function that conditionally
|
|
|
|
writes debug messages to `stderr` based on the existence of the `NODE_DEBUG`
|
|
|
|
environment variable. If the `section` name appears within the value of that
|
2016-05-23 21:14:14 +02:00
|
|
|
environment variable, then the returned function operates similar to
|
2016-07-09 07:13:09 +02:00
|
|
|
[`console.error()`][]. If not, then the returned function is a no-op.
|
2013-05-22 00:22:05 +02:00
|
|
|
|
|
|
|
For example:
|
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
2016-05-23 21:14:14 +02:00
|
|
|
const util = require('util');
|
2016-05-20 18:57:01 +02:00
|
|
|
const debuglog = util.debuglog('foo');
|
2013-05-22 00:22:05 +02:00
|
|
|
|
2016-05-20 18:57:01 +02:00
|
|
|
debuglog('hello from foo [%d]', 123);
|
2013-05-22 00:22:05 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
If this program is run with `NODE_DEBUG=foo` in the environment, then
|
|
|
|
it will output something like:
|
|
|
|
|
2016-07-09 07:13:09 +02:00
|
|
|
```txt
|
2016-01-17 18:39:07 +01:00
|
|
|
FOO 3245: hello from foo [123]
|
|
|
|
```
|
2013-05-22 00:22:05 +02:00
|
|
|
|
|
|
|
where `3245` is the process id. If it is not run with that
|
|
|
|
environment variable set, then it will not print anything.
|
|
|
|
|
2016-05-20 18:57:01 +02:00
|
|
|
Multiple comma-separated `section` names may be specified in the `NODE_DEBUG`
|
|
|
|
environment variable. For example: `NODE_DEBUG=fs,net,tls`.
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2015-11-05 16:28:34 +01:00
|
|
|
## util.deprecate(function, string)
|
2016-08-21 11:11:15 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.8.0
|
|
|
|
-->
|
2015-11-05 16:28:34 +01:00
|
|
|
|
2016-07-12 23:09:12 +02:00
|
|
|
The `util.deprecate()` method wraps the given `function` or class in such a way that
|
2016-05-23 21:14:14 +02:00
|
|
|
it is marked as deprecated.
|
2015-11-05 16:28:34 +01:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
const util = require('util');
|
2015-11-05 16:28:34 +01:00
|
|
|
|
2016-07-12 13:56:08 +02:00
|
|
|
exports.puts = util.deprecate(function() {
|
2016-01-17 18:39:07 +01:00
|
|
|
for (var i = 0, len = arguments.length; i < len; ++i) {
|
|
|
|
process.stdout.write(arguments[i] + '\n');
|
|
|
|
}
|
|
|
|
}, 'util.puts: Use console.log instead');
|
|
|
|
```
|
2015-11-05 16:28:34 +01:00
|
|
|
|
2016-05-23 21:14:14 +02:00
|
|
|
When called, `util.deprecate()` will return a function that will emit a
|
2016-05-20 18:57:01 +02:00
|
|
|
`DeprecationWarning` using the `process.on('warning')` event. By default,
|
2016-05-23 21:14:14 +02:00
|
|
|
this warning will be emitted and printed to `stderr` exactly once, the first
|
|
|
|
time it is called. After the warning is emitted, the wrapped `function`
|
2016-05-20 18:57:01 +02:00
|
|
|
is called.
|
2015-11-05 16:28:34 +01:00
|
|
|
|
2016-05-20 18:57:01 +02:00
|
|
|
If either the `--no-deprecation` or `--no-warnings` command line flags are
|
|
|
|
used, or if the `process.noDeprecation` property is set to `true` *prior* to
|
|
|
|
the first deprecation warning, the `util.deprecate()` method does nothing.
|
2015-11-05 16:28:34 +01:00
|
|
|
|
2016-05-20 18:57:01 +02:00
|
|
|
If the `--trace-deprecation` or `--trace-warnings` command line flags are set,
|
|
|
|
or the `process.traceDeprecation` property is set to `true`, a warning and a
|
|
|
|
stack trace are printed to `stderr` the first time the deprecated function is
|
|
|
|
called.
|
2015-11-05 16:28:34 +01:00
|
|
|
|
2016-05-20 18:57:01 +02:00
|
|
|
If the `--throw-deprecation` command line flag is set, or the
|
|
|
|
`process.throwDeprecation` property is set to `true`, then an exception will be
|
|
|
|
thrown when the deprecated function is called.
|
2015-11-05 16:28:34 +01:00
|
|
|
|
2016-05-20 18:57:01 +02:00
|
|
|
The `--throw-deprecation` command line flag and `process.throwDeprecation`
|
|
|
|
property take precedence over `--trace-deprecation` and
|
|
|
|
`process.traceDeprecation`.
|
2015-11-05 16:28:34 +01:00
|
|
|
|
2016-08-30 07:35:03 +02:00
|
|
|
## util.format(format[, ...args])
|
2016-08-21 11:11:15 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.5.3
|
|
|
|
-->
|
2011-08-05 16:37:16 +02:00
|
|
|
|
2016-08-30 07:35:03 +02:00
|
|
|
* `format` {String} A `printf`-like format string.
|
2016-05-20 18:57:01 +02:00
|
|
|
|
|
|
|
The `util.format()` method returns a formatted string using the first argument
|
|
|
|
as a `printf`-like format.
|
2011-08-05 16:37:16 +02:00
|
|
|
|
2016-05-20 18:57:01 +02:00
|
|
|
The first argument is a string containing zero or more *placeholder* tokens.
|
|
|
|
Each placeholder token is replaced with the converted value from the
|
|
|
|
corresponding argument. Supported placeholders are:
|
2011-08-05 16:37:16 +02:00
|
|
|
|
|
|
|
* `%s` - String.
|
|
|
|
* `%d` - Number (both integer and float).
|
2013-07-29 21:00:33 +02:00
|
|
|
* `%j` - JSON. Replaced with the string `'[Circular]'` if the argument
|
2015-03-08 07:26:15 +01:00
|
|
|
contains circular references.
|
2011-08-05 16:37:16 +02:00
|
|
|
* `%%` - single percent sign (`'%'`). This does not consume an argument.
|
|
|
|
|
2011-08-07 08:55:44 +02:00
|
|
|
If the placeholder does not have a corresponding argument, the placeholder is
|
|
|
|
not replaced.
|
2011-08-05 16:37:16 +02:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
2016-05-20 18:57:01 +02:00
|
|
|
util.format('%s:%s', 'foo');
|
2016-11-08 21:04:57 +01:00
|
|
|
// Returns: 'foo:%s'
|
2016-01-17 18:39:07 +01:00
|
|
|
```
|
2011-08-05 16:37:16 +02:00
|
|
|
|
2016-05-23 21:14:14 +02:00
|
|
|
If there are more arguments passed to the `util.format()` method than the
|
|
|
|
number of placeholders, the extra arguments are coerced into strings (for
|
|
|
|
objects and symbols, `util.inspect()` is used) then concatenated to the
|
|
|
|
returned string, each delimited by a space.
|
2011-08-05 16:37:16 +02:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
util.format('%s:%s', 'foo', 'bar', 'baz'); // 'foo:bar baz'
|
|
|
|
```
|
2011-08-05 16:37:16 +02:00
|
|
|
|
|
|
|
If the first argument is not a format string then `util.format()` returns
|
2016-05-20 18:57:01 +02:00
|
|
|
a string that is the concatenation of all arguments separated by spaces.
|
|
|
|
Each argument is converted to a string using `util.inspect()`.
|
2011-08-05 16:37:16 +02:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
util.format(1, 2, 3); // '1 2 3'
|
|
|
|
```
|
2011-08-05 16:37:16 +02:00
|
|
|
|
2015-11-05 16:28:34 +01:00
|
|
|
## util.inherits(constructor, superConstructor)
|
2016-08-21 11:11:15 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.3.0
|
|
|
|
-->
|
2011-08-05 16:37:16 +02:00
|
|
|
|
2016-05-23 21:14:14 +02:00
|
|
|
_Note: usage of `util.inherits()` is discouraged. Please use the ES6 `class` and
|
2016-05-02 07:03:23 +02:00
|
|
|
`extends` keywords to get language level inheritance support. Also note that
|
|
|
|
the two styles are [semantically incompatible][]._
|
|
|
|
|
2016-05-20 18:57:01 +02:00
|
|
|
* `constructor` {Function}
|
|
|
|
* `superConstructor` {Function}
|
|
|
|
|
2015-11-14 04:21:49 +01:00
|
|
|
Inherit the prototype methods from one [constructor][] into another. The
|
|
|
|
prototype of `constructor` will be set to a new object created from
|
|
|
|
`superConstructor`.
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2015-11-05 16:28:34 +01:00
|
|
|
As an additional convenience, `superConstructor` will be accessible
|
|
|
|
through the `constructor.super_` property.
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
const util = require('util');
|
|
|
|
const EventEmitter = require('events');
|
2015-11-05 16:28:34 +01:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
function MyStream() {
|
2016-07-15 07:41:29 +02:00
|
|
|
EventEmitter.call(this);
|
2016-01-17 18:39:07 +01:00
|
|
|
}
|
2015-11-05 16:28:34 +01:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
util.inherits(MyStream, EventEmitter);
|
2015-11-05 16:28:34 +01:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
MyStream.prototype.write = function(data) {
|
2016-07-15 07:41:29 +02:00
|
|
|
this.emit('data', data);
|
|
|
|
};
|
2015-11-05 16:28:34 +01:00
|
|
|
|
2016-05-23 21:14:14 +02:00
|
|
|
const stream = new MyStream();
|
2015-11-05 16:28:34 +01:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
console.log(stream instanceof EventEmitter); // true
|
|
|
|
console.log(MyStream.super_ === EventEmitter); // true
|
2015-11-05 16:28:34 +01:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
stream.on('data', (data) => {
|
|
|
|
console.log(`Received data: "${data}"`);
|
2016-07-15 07:41:29 +02:00
|
|
|
});
|
2016-01-17 18:39:07 +01:00
|
|
|
stream.write('It works!'); // Received data: "It works!"
|
|
|
|
```
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2016-08-19 18:00:11 +02:00
|
|
|
ES6 example using `class` and `extends`
|
|
|
|
|
|
|
|
```js
|
|
|
|
const EventEmitter = require('events');
|
|
|
|
|
|
|
|
class MyStream extends EventEmitter {
|
|
|
|
constructor() {
|
|
|
|
super();
|
|
|
|
}
|
|
|
|
write(data) {
|
|
|
|
this.emit('data', data);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const stream = new MyStream();
|
|
|
|
|
|
|
|
stream.on('data', (data) => {
|
|
|
|
console.log(`Received data: "${data}"`);
|
|
|
|
});
|
|
|
|
stream.write('With ES6');
|
|
|
|
|
|
|
|
```
|
|
|
|
|
2014-09-25 00:41:31 +02:00
|
|
|
## util.inspect(object[, options])
|
2016-08-21 11:11:15 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.3.0
|
|
|
|
-->
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2016-05-20 18:57:01 +02:00
|
|
|
* `object` {any} Any JavaScript primitive or Object.
|
|
|
|
* `options` {Object}
|
2016-05-23 21:14:14 +02:00
|
|
|
* `showHidden` {boolean} If `true`, the `object`'s non-enumerable symbols and
|
|
|
|
properties will be included in the formatted result. Defaults to `false`.
|
|
|
|
* `depth` {number} Specifies the number of times to recurse while formatting
|
|
|
|
the `object`. This is useful for inspecting large complicated objects.
|
|
|
|
Defaults to `2`. To make it recurse indefinitely pass `null`.
|
2016-05-20 18:57:01 +02:00
|
|
|
* `colors` {boolean} If `true`, the output will be styled with ANSI color
|
|
|
|
codes. Defaults to `false`. Colors are customizable, see
|
|
|
|
[Customizing `util.inspect` colors][].
|
|
|
|
* `customInspect` {boolean} If `false`, then custom `inspect(depth, opts)`
|
|
|
|
functions exported on the `object` being inspected will not be called.
|
|
|
|
Defaults to `true`.
|
|
|
|
* `showProxy` {boolean} If `true`, then objects and functions that are
|
2016-05-23 21:14:14 +02:00
|
|
|
`Proxy` objects will be introspected to show their `target` and `handler`
|
2016-05-20 18:57:01 +02:00
|
|
|
objects. Defaults to `false`.
|
|
|
|
* `maxArrayLength` {number} Specifies the maximum number of array and
|
|
|
|
`TypedArray` elements to include when formatting. Defaults to `100`. Set to
|
|
|
|
`null` to show all array elements. Set to `0` or negative to show no array
|
|
|
|
elements.
|
2016-06-30 18:03:02 +02:00
|
|
|
* `breakLength` {number} The length at which an object's keys are split
|
|
|
|
across multiple lines. Set to `Infinity` to format an object as a single
|
|
|
|
line. Defaults to 60 for legacy compatibility.
|
2016-05-20 18:57:01 +02:00
|
|
|
|
|
|
|
The `util.inspect()` method returns a string representation of `object` that is
|
|
|
|
primarily useful for debugging. Additional `options` may be passed that alter
|
|
|
|
certain aspects of the formatted string.
|
|
|
|
|
|
|
|
The following example inspects all properties of the `util` object:
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
const util = require('util');
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
console.log(util.inspect(util, { showHidden: true, depth: null }));
|
|
|
|
```
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2013-08-22 03:38:23 +02:00
|
|
|
Values may supply their own custom `inspect(depth, opts)` functions, when
|
2016-05-20 18:57:01 +02:00
|
|
|
called these receive the current `depth` in the recursive inspection, as well as
|
2013-08-22 03:38:23 +02:00
|
|
|
the options object passed to `util.inspect()`.
|
|
|
|
|
2012-07-16 23:50:15 +02:00
|
|
|
### Customizing `util.inspect` colors
|
|
|
|
|
2013-05-22 00:22:05 +02:00
|
|
|
<!-- type=misc -->
|
|
|
|
|
2012-07-16 23:50:15 +02:00
|
|
|
Color output (if enabled) of `util.inspect` is customizable globally
|
2016-05-20 18:57:01 +02:00
|
|
|
via the `util.inspect.styles` and `util.inspect.colors` properties.
|
|
|
|
|
|
|
|
`util.inspect.styles` is a map associating a style name to a color from
|
|
|
|
`util.inspect.colors`.
|
|
|
|
|
|
|
|
The default styles and associated colors are:
|
|
|
|
|
|
|
|
* `number` - `yellow`
|
|
|
|
* `boolean` - `yellow`
|
|
|
|
* `string` - `green`
|
|
|
|
* `date` - `magenta`
|
|
|
|
* `regexp` - `red`
|
|
|
|
* `null` - `bold`
|
|
|
|
* `undefined` - `grey`
|
|
|
|
* `special` - `cyan` (only applied to functions at this time)
|
|
|
|
* `name` - (no styling)
|
|
|
|
|
|
|
|
The predefined color codes are: `white`, `grey`, `black`, `blue`, `cyan`,
|
|
|
|
`green`, `magenta`, `red` and `yellow`. There are also `bold`, `italic`,
|
|
|
|
`underline` and `inverse` codes.
|
|
|
|
|
|
|
|
Color styling uses ANSI control codes that may not be supported on all
|
|
|
|
terminals.
|
2012-07-16 23:50:15 +02:00
|
|
|
|
2016-08-19 00:26:36 +02:00
|
|
|
### Custom inspection functions on Objects
|
2013-01-30 04:06:32 +01:00
|
|
|
|
2013-05-22 00:22:05 +02:00
|
|
|
<!-- type=misc -->
|
|
|
|
|
2016-08-19 00:26:36 +02:00
|
|
|
Objects may also define their own `[util.inspect.custom](depth, opts)`
|
|
|
|
(or, equivalently `inspect(depth, opts)`) function that `util.inspect()` will
|
|
|
|
invoke and use the result of when inspecting the object:
|
2012-10-06 01:48:13 +02:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
const util = require('util');
|
2012-10-06 01:48:13 +02:00
|
|
|
|
2016-10-01 02:56:16 +02:00
|
|
|
class Box {
|
|
|
|
constructor(value) {
|
|
|
|
this.value = value;
|
|
|
|
}
|
|
|
|
|
|
|
|
inspect(depth, options) {
|
|
|
|
if (depth < 0) {
|
|
|
|
return options.stylize('[Box]', 'special');
|
|
|
|
}
|
|
|
|
|
|
|
|
const newOptions = Object.assign({}, options, {
|
|
|
|
depth: options.depth === null ? null : options.depth - 1
|
|
|
|
});
|
|
|
|
|
|
|
|
// Five space padding because that's the size of "Box< ".
|
|
|
|
const padding = ' '.repeat(5);
|
|
|
|
const inner = util.inspect(this.value, newOptions).replace(/\n/g, '\n' + padding);
|
|
|
|
return options.stylize('Box', 'special') + '< ' + inner + ' >';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const box = new Box(true);
|
2012-10-06 01:48:13 +02:00
|
|
|
|
2016-10-01 02:56:16 +02:00
|
|
|
util.inspect(box);
|
2016-11-08 21:04:57 +01:00
|
|
|
// Returns: "Box< true >"
|
2016-01-17 18:39:07 +01:00
|
|
|
```
|
2012-10-06 01:48:13 +02:00
|
|
|
|
2016-08-19 00:26:36 +02:00
|
|
|
Custom `[util.inspect.custom](depth, opts)` functions typically return a string
|
|
|
|
but may return a value of any type that will be formatted accordingly by
|
2016-05-20 18:57:01 +02:00
|
|
|
`util.inspect()`.
|
2013-01-30 04:06:32 +01:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
2016-05-23 21:14:14 +02:00
|
|
|
const util = require('util');
|
|
|
|
|
2016-08-19 00:26:36 +02:00
|
|
|
const obj = { foo: 'this will not show up in the inspect() output' };
|
|
|
|
obj[util.inspect.custom] = function(depth) {
|
|
|
|
return { bar: 'baz' };
|
|
|
|
};
|
|
|
|
|
|
|
|
util.inspect(obj);
|
2016-11-08 21:04:57 +01:00
|
|
|
// Returns: "{ bar: 'baz' }"
|
2016-08-19 00:26:36 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
A custom inspection method can alternatively be provided by exposing
|
|
|
|
an `inspect(depth, opts)` method on the object:
|
|
|
|
|
|
|
|
```js
|
|
|
|
const util = require('util');
|
|
|
|
|
2016-05-23 21:14:14 +02:00
|
|
|
const obj = { foo: 'this will not show up in the inspect() output' };
|
2016-01-17 18:39:07 +01:00
|
|
|
obj.inspect = function(depth) {
|
|
|
|
return { bar: 'baz' };
|
|
|
|
};
|
2013-01-30 04:06:32 +01:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
util.inspect(obj);
|
2016-11-08 21:04:57 +01:00
|
|
|
// Returns: "{ bar: 'baz' }"
|
2016-01-17 18:39:07 +01:00
|
|
|
```
|
2013-01-30 04:06:32 +01:00
|
|
|
|
2016-08-09 20:48:56 +02:00
|
|
|
### util.inspect.defaultOptions
|
2016-08-21 11:11:15 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v6.4.0
|
|
|
|
-->
|
2016-08-09 20:48:56 +02:00
|
|
|
|
|
|
|
The `defaultOptions` value allows customization of the default options used by
|
|
|
|
`util.inspect`. This is useful for functions like `console.log` or
|
|
|
|
`util.format` which implicitly call into `util.inspect`. It shall be set to an
|
|
|
|
object containing one or more valid [`util.inspect()`][] options. Setting
|
|
|
|
option properties directly is also supported.
|
|
|
|
|
|
|
|
```js
|
|
|
|
const util = require('util');
|
|
|
|
const arr = Array(101);
|
|
|
|
|
|
|
|
console.log(arr); // logs the truncated array
|
|
|
|
util.inspect.defaultOptions.maxArrayLength = null;
|
|
|
|
console.log(arr); // logs the full array
|
|
|
|
```
|
|
|
|
|
2016-08-19 00:26:36 +02:00
|
|
|
### util.inspect.custom
|
|
|
|
<!-- YAML
|
2016-09-14 19:13:08 +02:00
|
|
|
added: v6.6.0
|
2016-08-19 00:26:36 +02:00
|
|
|
-->
|
|
|
|
|
|
|
|
A Symbol that can be used to declare custom inspect functions, see
|
|
|
|
[Custom inspection functions on Objects][].
|
|
|
|
|
2016-05-20 18:57:01 +02:00
|
|
|
## Deprecated APIs
|
|
|
|
|
|
|
|
The following APIs have been deprecated and should no longer be used. Existing
|
|
|
|
applications and modules should be updated to find alternative approaches.
|
|
|
|
|
|
|
|
### util.debug(string)
|
2016-08-21 11:11:15 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.3.0
|
|
|
|
deprecated: v0.11.3
|
|
|
|
-->
|
2016-05-20 18:57:01 +02:00
|
|
|
|
2016-07-16 00:35:38 +02:00
|
|
|
> Stability: 0 - Deprecated: Use [`console.error()`][] instead.
|
2016-05-20 18:57:01 +02:00
|
|
|
|
2016-08-30 07:35:03 +02:00
|
|
|
* `string` {String} The message to print to `stderr`
|
2016-05-20 18:57:01 +02:00
|
|
|
|
|
|
|
Deprecated predecessor of `console.error`.
|
|
|
|
|
2016-08-30 07:35:03 +02:00
|
|
|
### util.error([...strings])
|
2016-08-21 11:11:15 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.3.0
|
|
|
|
deprecated: v0.11.3
|
|
|
|
-->
|
2016-05-20 18:57:01 +02:00
|
|
|
|
2016-07-16 00:35:38 +02:00
|
|
|
> Stability: 0 - Deprecated: Use [`console.error()`][] instead.
|
2016-05-20 18:57:01 +02:00
|
|
|
|
2016-08-30 07:35:03 +02:00
|
|
|
* `...strings` {String} The message to print to `stderr`
|
2016-05-20 18:57:01 +02:00
|
|
|
|
|
|
|
Deprecated predecessor of `console.error`.
|
|
|
|
|
|
|
|
### util.isArray(object)
|
2016-08-21 11:11:15 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.6.0
|
|
|
|
deprecated: v4.0.0
|
|
|
|
-->
|
2011-10-26 20:10:23 +02:00
|
|
|
|
2016-07-16 00:35:38 +02:00
|
|
|
> Stability: 0 - Deprecated
|
2015-08-19 22:39:47 +02:00
|
|
|
|
2016-05-20 18:57:01 +02:00
|
|
|
* `object` {any}
|
|
|
|
|
2015-11-28 00:30:32 +01:00
|
|
|
Internal alias for [`Array.isArray`][].
|
2014-04-02 02:04:15 +02:00
|
|
|
|
2016-05-20 18:57:01 +02:00
|
|
|
Returns `true` if the given `object` is an `Array`. Otherwise, returns `false`.
|
2011-10-26 20:10:23 +02:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
const util = require('util');
|
2011-10-26 20:10:23 +02:00
|
|
|
|
2016-05-23 21:14:14 +02:00
|
|
|
util.isArray([]);
|
2016-11-08 21:04:57 +01:00
|
|
|
// Returns: true
|
2016-05-23 21:14:14 +02:00
|
|
|
util.isArray(new Array);
|
2016-11-08 21:04:57 +01:00
|
|
|
// Returns: true
|
2016-05-23 21:14:14 +02:00
|
|
|
util.isArray({});
|
2016-11-08 21:04:57 +01:00
|
|
|
// Returns: false
|
2016-01-17 18:39:07 +01:00
|
|
|
```
|
2011-10-26 20:10:23 +02:00
|
|
|
|
2016-05-20 18:57:01 +02:00
|
|
|
### util.isBoolean(object)
|
2016-08-21 11:11:15 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.11.5
|
|
|
|
deprecated: v4.0.0
|
|
|
|
-->
|
2011-10-26 20:10:23 +02:00
|
|
|
|
2016-07-16 00:35:38 +02:00
|
|
|
> Stability: 0 - Deprecated
|
2015-08-19 22:39:47 +02:00
|
|
|
|
2016-05-20 18:57:01 +02:00
|
|
|
* `object` {any}
|
|
|
|
|
|
|
|
Returns `true` if the given `object` is a `Boolean`. Otherwise, returns `false`.
|
2011-10-26 20:10:23 +02:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
const util = require('util');
|
2011-10-26 20:10:23 +02:00
|
|
|
|
2016-05-23 21:14:14 +02:00
|
|
|
util.isBoolean(1);
|
2016-11-08 21:04:57 +01:00
|
|
|
// Returns: false
|
2016-05-23 21:14:14 +02:00
|
|
|
util.isBoolean(0);
|
2016-11-08 21:04:57 +01:00
|
|
|
// Returns: false
|
2016-05-23 21:14:14 +02:00
|
|
|
util.isBoolean(false);
|
2016-11-08 21:04:57 +01:00
|
|
|
// Returns: true
|
2016-01-17 18:39:07 +01:00
|
|
|
```
|
2015-12-07 20:20:50 +01:00
|
|
|
|
2016-05-20 18:57:01 +02:00
|
|
|
### util.isBuffer(object)
|
2016-08-21 11:11:15 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.11.5
|
|
|
|
deprecated: v4.0.0
|
|
|
|
-->
|
2015-11-05 16:28:34 +01:00
|
|
|
|
2016-07-16 00:35:38 +02:00
|
|
|
> Stability: 0 - Deprecated: Use [`Buffer.isBuffer()`][] instead.
|
2015-11-05 16:28:34 +01:00
|
|
|
|
2016-05-20 18:57:01 +02:00
|
|
|
* `object` {any}
|
|
|
|
|
|
|
|
Returns `true` if the given `object` is a `Buffer`. Otherwise, returns `false`.
|
2015-11-05 16:28:34 +01:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
const util = require('util');
|
2015-11-05 16:28:34 +01:00
|
|
|
|
2016-05-23 21:14:14 +02:00
|
|
|
util.isBuffer({ length: 0 });
|
2016-11-08 21:04:57 +01:00
|
|
|
// Returns: false
|
2016-05-23 21:14:14 +02:00
|
|
|
util.isBuffer([]);
|
2016-11-08 21:04:57 +01:00
|
|
|
// Returns: false
|
2016-05-23 21:14:14 +02:00
|
|
|
util.isBuffer(Buffer.from('hello world'));
|
2016-11-08 21:04:57 +01:00
|
|
|
// Returns: true
|
2016-01-17 18:39:07 +01:00
|
|
|
```
|
2011-10-26 20:10:23 +02:00
|
|
|
|
2016-05-20 18:57:01 +02:00
|
|
|
### util.isDate(object)
|
2016-08-21 11:11:15 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.6.0
|
|
|
|
deprecated: v4.0.0
|
|
|
|
-->
|
2011-10-26 20:10:23 +02:00
|
|
|
|
2016-07-16 00:35:38 +02:00
|
|
|
> Stability: 0 - Deprecated
|
2015-08-19 22:39:47 +02:00
|
|
|
|
2016-05-20 18:57:01 +02:00
|
|
|
* `object` {any}
|
|
|
|
|
|
|
|
Returns `true` if the given `object` is a `Date`. Otherwise, returns `false`.
|
2011-10-26 20:10:23 +02:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
const util = require('util');
|
2011-10-26 20:10:23 +02:00
|
|
|
|
2016-05-23 21:14:14 +02:00
|
|
|
util.isDate(new Date());
|
2016-11-08 21:04:57 +01:00
|
|
|
// Returns: true
|
2016-05-23 21:14:14 +02:00
|
|
|
util.isDate(Date());
|
2016-11-08 21:04:57 +01:00
|
|
|
// false (without 'new' returns a String)
|
2016-05-23 21:14:14 +02:00
|
|
|
util.isDate({});
|
2016-11-08 21:04:57 +01:00
|
|
|
// Returns: false
|
2016-01-17 18:39:07 +01:00
|
|
|
```
|
2011-10-26 20:10:23 +02:00
|
|
|
|
2016-05-20 18:57:01 +02:00
|
|
|
### util.isError(object)
|
2016-08-21 11:11:15 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.6.0
|
|
|
|
deprecated: v4.0.0
|
|
|
|
-->
|
2011-10-26 20:10:23 +02:00
|
|
|
|
2016-07-16 00:35:38 +02:00
|
|
|
> Stability: 0 - Deprecated
|
2015-08-19 22:39:47 +02:00
|
|
|
|
2016-05-20 18:57:01 +02:00
|
|
|
* `object` {any}
|
|
|
|
|
|
|
|
Returns `true` if the given `object` is an [`Error`][]. Otherwise, returns
|
2016-02-24 00:05:26 +01:00
|
|
|
`false`.
|
2011-10-26 20:10:23 +02:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
const util = require('util');
|
2011-10-26 20:10:23 +02:00
|
|
|
|
2016-05-23 21:14:14 +02:00
|
|
|
util.isError(new Error());
|
2016-11-08 21:04:57 +01:00
|
|
|
// Returns: true
|
2016-05-23 21:14:14 +02:00
|
|
|
util.isError(new TypeError());
|
2016-11-08 21:04:57 +01:00
|
|
|
// Returns: true
|
2016-05-23 21:14:14 +02:00
|
|
|
util.isError({ name: 'Error', message: 'an error occurred' });
|
2016-11-08 21:04:57 +01:00
|
|
|
// Returns: false
|
2016-01-17 18:39:07 +01:00
|
|
|
```
|
2011-10-26 20:10:23 +02:00
|
|
|
|
2016-02-24 18:00:23 +01:00
|
|
|
Note that this method relies on `Object.prototype.toString()` behavior. It is
|
|
|
|
possible to obtain an incorrect result when the `object` argument manipulates
|
2016-05-27 21:15:25 +02:00
|
|
|
`@@toStringTag`.
|
2016-02-24 18:00:23 +01:00
|
|
|
|
|
|
|
```js
|
|
|
|
const util = require('util');
|
|
|
|
const obj = { name: 'Error', message: 'an error occurred' };
|
|
|
|
|
|
|
|
util.isError(obj);
|
2016-11-08 21:04:57 +01:00
|
|
|
// Returns: false
|
2016-02-24 18:00:23 +01:00
|
|
|
obj[Symbol.toStringTag] = 'Error';
|
|
|
|
util.isError(obj);
|
2016-11-08 21:04:57 +01:00
|
|
|
// Returns: true
|
2016-02-24 18:00:23 +01:00
|
|
|
```
|
|
|
|
|
2016-05-20 18:57:01 +02:00
|
|
|
### util.isFunction(object)
|
2016-08-21 11:11:15 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.11.5
|
|
|
|
deprecated: v4.0.0
|
|
|
|
-->
|
2015-01-14 02:19:26 +01:00
|
|
|
|
2016-07-16 00:35:38 +02:00
|
|
|
> Stability: 0 - Deprecated
|
2015-08-19 22:39:47 +02:00
|
|
|
|
2016-05-20 18:57:01 +02:00
|
|
|
* `object` {any}
|
|
|
|
|
|
|
|
Returns `true` if the given `object` is a `Function`. Otherwise, returns
|
2016-02-24 00:05:26 +01:00
|
|
|
`false`.
|
2015-01-14 02:19:26 +01:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
const util = require('util');
|
2015-01-14 02:19:26 +01:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
function Foo() {}
|
2016-05-23 21:14:14 +02:00
|
|
|
const Bar = function() {};
|
2015-11-05 16:28:34 +01:00
|
|
|
|
2016-05-23 21:14:14 +02:00
|
|
|
util.isFunction({});
|
2016-11-08 21:04:57 +01:00
|
|
|
// Returns: false
|
2016-05-23 21:14:14 +02:00
|
|
|
util.isFunction(Foo);
|
2016-11-08 21:04:57 +01:00
|
|
|
// Returns: true
|
2016-05-23 21:14:14 +02:00
|
|
|
util.isFunction(Bar);
|
2016-11-08 21:04:57 +01:00
|
|
|
// Returns: true
|
2016-01-17 18:39:07 +01:00
|
|
|
```
|
2015-01-14 02:19:26 +01:00
|
|
|
|
2016-05-20 18:57:01 +02:00
|
|
|
### util.isNull(object)
|
2016-08-21 11:11:15 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.11.5
|
|
|
|
deprecated: v4.0.0
|
|
|
|
-->
|
2015-01-14 02:19:26 +01:00
|
|
|
|
2016-07-16 00:35:38 +02:00
|
|
|
> Stability: 0 - Deprecated
|
2015-08-19 22:39:47 +02:00
|
|
|
|
2016-05-20 18:57:01 +02:00
|
|
|
* `object` {any}
|
|
|
|
|
|
|
|
Returns `true` if the given `object` is strictly `null`. Otherwise, returns
|
2016-02-24 00:05:26 +01:00
|
|
|
`false`.
|
2015-01-14 02:19:26 +01:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
const util = require('util');
|
2015-01-14 02:19:26 +01:00
|
|
|
|
2016-05-23 21:14:14 +02:00
|
|
|
util.isNull(0);
|
2016-11-08 21:04:57 +01:00
|
|
|
// Returns: false
|
2016-05-23 21:14:14 +02:00
|
|
|
util.isNull(undefined);
|
2016-11-08 21:04:57 +01:00
|
|
|
// Returns: false
|
2016-05-23 21:14:14 +02:00
|
|
|
util.isNull(null);
|
2016-11-08 21:04:57 +01:00
|
|
|
// Returns: true
|
2016-01-17 18:39:07 +01:00
|
|
|
```
|
2015-01-14 02:19:26 +01:00
|
|
|
|
2016-05-20 18:57:01 +02:00
|
|
|
### util.isNullOrUndefined(object)
|
2016-08-21 11:11:15 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.11.5
|
|
|
|
deprecated: v4.0.0
|
|
|
|
-->
|
2015-01-14 02:19:26 +01:00
|
|
|
|
2016-07-16 00:35:38 +02:00
|
|
|
> Stability: 0 - Deprecated
|
2015-08-19 22:39:47 +02:00
|
|
|
|
2016-05-20 18:57:01 +02:00
|
|
|
* `object` {any}
|
|
|
|
|
|
|
|
Returns `true` if the given `object` is `null` or `undefined`. Otherwise,
|
2016-02-24 00:05:26 +01:00
|
|
|
returns `false`.
|
2015-01-14 02:19:26 +01:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
const util = require('util');
|
2015-01-14 02:19:26 +01:00
|
|
|
|
2016-05-23 21:14:14 +02:00
|
|
|
util.isNullOrUndefined(0);
|
2016-11-08 21:04:57 +01:00
|
|
|
// Returns: false
|
2016-05-23 21:14:14 +02:00
|
|
|
util.isNullOrUndefined(undefined);
|
2016-11-08 21:04:57 +01:00
|
|
|
// Returns: true
|
2016-05-23 21:14:14 +02:00
|
|
|
util.isNullOrUndefined(null);
|
2016-11-08 21:04:57 +01:00
|
|
|
// Returns: true
|
2016-01-17 18:39:07 +01:00
|
|
|
```
|
2015-01-14 02:19:26 +01:00
|
|
|
|
2016-05-20 18:57:01 +02:00
|
|
|
### util.isNumber(object)
|
2016-08-21 11:11:15 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.11.5
|
|
|
|
deprecated: v4.0.0
|
|
|
|
-->
|
2015-01-14 02:19:26 +01:00
|
|
|
|
2016-07-16 00:35:38 +02:00
|
|
|
> Stability: 0 - Deprecated
|
2015-08-19 22:39:47 +02:00
|
|
|
|
2016-05-20 18:57:01 +02:00
|
|
|
* `object` {any}
|
|
|
|
|
|
|
|
Returns `true` if the given `object` is a `Number`. Otherwise, returns `false`.
|
2015-01-14 02:19:26 +01:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
const util = require('util');
|
|
|
|
|
2016-05-23 21:14:14 +02:00
|
|
|
util.isNumber(false);
|
2016-11-08 21:04:57 +01:00
|
|
|
// Returns: false
|
2016-05-23 21:14:14 +02:00
|
|
|
util.isNumber(Infinity);
|
2016-11-08 21:04:57 +01:00
|
|
|
// Returns: true
|
2016-05-23 21:14:14 +02:00
|
|
|
util.isNumber(0);
|
2016-11-08 21:04:57 +01:00
|
|
|
// Returns: true
|
2016-05-23 21:14:14 +02:00
|
|
|
util.isNumber(NaN);
|
2016-11-08 21:04:57 +01:00
|
|
|
// Returns: true
|
2016-01-17 18:39:07 +01:00
|
|
|
```
|
2015-01-14 02:19:26 +01:00
|
|
|
|
2016-05-20 18:57:01 +02:00
|
|
|
### util.isObject(object)
|
2016-08-21 11:11:15 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.11.5
|
|
|
|
deprecated: v4.0.0
|
|
|
|
-->
|
2015-01-14 02:19:26 +01:00
|
|
|
|
2016-07-16 00:35:38 +02:00
|
|
|
> Stability: 0 - Deprecated
|
2015-08-19 22:39:47 +02:00
|
|
|
|
2016-05-20 18:57:01 +02:00
|
|
|
* `object` {any}
|
|
|
|
|
2016-09-20 06:44:22 +02:00
|
|
|
Returns `true` if the given `object` is strictly an `Object` **and** not a
|
2016-02-24 00:05:26 +01:00
|
|
|
`Function`. Otherwise, returns `false`.
|
2015-01-14 02:19:26 +01:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
const util = require('util');
|
|
|
|
|
2016-05-23 21:14:14 +02:00
|
|
|
util.isObject(5);
|
2016-11-08 21:04:57 +01:00
|
|
|
// Returns: false
|
2016-05-23 21:14:14 +02:00
|
|
|
util.isObject(null);
|
2016-11-08 21:04:57 +01:00
|
|
|
// Returns: false
|
2016-05-23 21:14:14 +02:00
|
|
|
util.isObject({});
|
2016-11-08 21:04:57 +01:00
|
|
|
// Returns: true
|
2016-05-23 21:14:14 +02:00
|
|
|
util.isObject(function(){});
|
2016-11-08 21:04:57 +01:00
|
|
|
// Returns: false
|
2016-01-17 18:39:07 +01:00
|
|
|
```
|
2015-01-14 02:19:26 +01:00
|
|
|
|
2016-05-20 18:57:01 +02:00
|
|
|
### util.isPrimitive(object)
|
2016-08-21 11:11:15 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.11.5
|
|
|
|
deprecated: v4.0.0
|
|
|
|
-->
|
2015-01-14 02:19:26 +01:00
|
|
|
|
2016-07-16 00:35:38 +02:00
|
|
|
> Stability: 0 - Deprecated
|
2015-08-19 22:39:47 +02:00
|
|
|
|
2016-05-20 18:57:01 +02:00
|
|
|
* `object` {any}
|
|
|
|
|
|
|
|
Returns `true` if the given `object` is a primitive type. Otherwise, returns
|
2016-02-24 00:05:26 +01:00
|
|
|
`false`.
|
2015-01-14 02:19:26 +01:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
const util = require('util');
|
|
|
|
|
2016-05-23 21:14:14 +02:00
|
|
|
util.isPrimitive(5);
|
2016-11-08 21:04:57 +01:00
|
|
|
// Returns: true
|
2016-05-23 21:14:14 +02:00
|
|
|
util.isPrimitive('foo');
|
2016-11-08 21:04:57 +01:00
|
|
|
// Returns: true
|
2016-05-23 21:14:14 +02:00
|
|
|
util.isPrimitive(false);
|
2016-11-08 21:04:57 +01:00
|
|
|
// Returns: true
|
2016-05-23 21:14:14 +02:00
|
|
|
util.isPrimitive(null);
|
2016-11-08 21:04:57 +01:00
|
|
|
// Returns: true
|
2016-05-23 21:14:14 +02:00
|
|
|
util.isPrimitive(undefined);
|
2016-11-08 21:04:57 +01:00
|
|
|
// Returns: true
|
2016-05-23 21:14:14 +02:00
|
|
|
util.isPrimitive({});
|
2016-11-08 21:04:57 +01:00
|
|
|
// Returns: false
|
2016-05-23 21:14:14 +02:00
|
|
|
util.isPrimitive(function() {});
|
2016-11-08 21:04:57 +01:00
|
|
|
// Returns: false
|
2016-05-23 21:14:14 +02:00
|
|
|
util.isPrimitive(/^$/);
|
2016-11-08 21:04:57 +01:00
|
|
|
// Returns: false
|
2016-05-23 21:14:14 +02:00
|
|
|
util.isPrimitive(new Date());
|
2016-11-08 21:04:57 +01:00
|
|
|
// Returns: false
|
2016-01-17 18:39:07 +01:00
|
|
|
```
|
2015-01-14 02:19:26 +01:00
|
|
|
|
2016-05-20 18:57:01 +02:00
|
|
|
### util.isRegExp(object)
|
2016-08-21 11:11:15 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.6.0
|
|
|
|
deprecated: v4.0.0
|
|
|
|
-->
|
2015-01-14 02:19:26 +01:00
|
|
|
|
2016-07-16 00:35:38 +02:00
|
|
|
> Stability: 0 - Deprecated
|
2015-08-19 22:39:47 +02:00
|
|
|
|
2016-05-20 18:57:01 +02:00
|
|
|
* `object` {any}
|
|
|
|
|
|
|
|
Returns `true` if the given `object` is a `RegExp`. Otherwise, returns `false`.
|
2015-01-14 02:19:26 +01:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
const util = require('util');
|
2015-01-14 02:19:26 +01:00
|
|
|
|
2016-05-23 21:14:14 +02:00
|
|
|
util.isRegExp(/some regexp/);
|
2016-11-08 21:04:57 +01:00
|
|
|
// Returns: true
|
2016-05-23 21:14:14 +02:00
|
|
|
util.isRegExp(new RegExp('another regexp'));
|
2016-11-08 21:04:57 +01:00
|
|
|
// Returns: true
|
2016-05-23 21:14:14 +02:00
|
|
|
util.isRegExp({});
|
2016-11-08 21:04:57 +01:00
|
|
|
// Returns: false
|
2016-01-17 18:39:07 +01:00
|
|
|
```
|
2015-01-14 02:19:26 +01:00
|
|
|
|
2016-05-20 18:57:01 +02:00
|
|
|
### util.isString(object)
|
2016-08-21 11:11:15 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.11.5
|
|
|
|
deprecated: v4.0.0
|
|
|
|
-->
|
2013-05-22 00:22:05 +02:00
|
|
|
|
2016-07-16 00:35:38 +02:00
|
|
|
> Stability: 0 - Deprecated
|
2014-05-07 11:48:55 +02:00
|
|
|
|
2016-05-20 18:57:01 +02:00
|
|
|
* `object` {any}
|
|
|
|
|
|
|
|
Returns `true` if the given `object` is a `string`. Otherwise, returns `false`.
|
2014-05-07 11:48:55 +02:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
const util = require('util');
|
|
|
|
|
2016-05-23 21:14:14 +02:00
|
|
|
util.isString('');
|
2016-11-08 21:04:57 +01:00
|
|
|
// Returns: true
|
2016-05-23 21:14:14 +02:00
|
|
|
util.isString('foo');
|
2016-11-08 21:04:57 +01:00
|
|
|
// Returns: true
|
2016-05-23 21:14:14 +02:00
|
|
|
util.isString(String('foo'));
|
2016-11-08 21:04:57 +01:00
|
|
|
// Returns: true
|
2016-05-23 21:14:14 +02:00
|
|
|
util.isString(5);
|
2016-11-08 21:04:57 +01:00
|
|
|
// Returns: false
|
2016-01-17 18:39:07 +01:00
|
|
|
```
|
2014-12-21 02:06:19 +01:00
|
|
|
|
2016-06-03 21:49:44 +02:00
|
|
|
### util.isSymbol(object)
|
2016-08-21 11:11:15 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.11.5
|
|
|
|
deprecated: v4.0.0
|
|
|
|
-->
|
2014-12-21 02:06:19 +01:00
|
|
|
|
2016-07-16 00:35:38 +02:00
|
|
|
> Stability: 0 - Deprecated
|
2014-12-21 02:06:19 +01:00
|
|
|
|
2016-05-20 18:57:01 +02:00
|
|
|
* `object` {any}
|
|
|
|
|
|
|
|
Returns `true` if the given `object` is a `Symbol`. Otherwise, returns `false`.
|
2014-12-21 02:06:19 +01:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
const util = require('util');
|
2014-05-07 11:48:55 +02:00
|
|
|
|
2016-05-23 21:14:14 +02:00
|
|
|
util.isSymbol(5);
|
2016-11-08 21:04:57 +01:00
|
|
|
// Returns: false
|
2016-05-23 21:14:14 +02:00
|
|
|
util.isSymbol('foo');
|
2016-11-08 21:04:57 +01:00
|
|
|
// Returns: false
|
2016-05-23 21:14:14 +02:00
|
|
|
util.isSymbol(Symbol('foo'));
|
2016-11-08 21:04:57 +01:00
|
|
|
// Returns: true
|
2016-01-17 18:39:07 +01:00
|
|
|
```
|
2013-05-22 00:22:05 +02:00
|
|
|
|
2016-05-20 18:57:01 +02:00
|
|
|
### util.isUndefined(object)
|
2016-08-21 11:11:15 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.11.5
|
|
|
|
deprecated: v4.0.0
|
|
|
|
-->
|
2013-05-22 00:22:05 +02:00
|
|
|
|
2016-07-16 00:35:38 +02:00
|
|
|
> Stability: 0 - Deprecated
|
2013-05-22 00:22:05 +02:00
|
|
|
|
2016-05-20 18:57:01 +02:00
|
|
|
* `object` {any}
|
|
|
|
|
|
|
|
Returns `true` if the given `object` is `undefined`. Otherwise, returns `false`.
|
2013-05-22 00:22:05 +02:00
|
|
|
|
2016-01-17 18:39:07 +01:00
|
|
|
```js
|
|
|
|
const util = require('util');
|
2013-05-22 00:22:05 +02:00
|
|
|
|
2016-05-23 21:14:14 +02:00
|
|
|
const foo = undefined;
|
|
|
|
util.isUndefined(5);
|
2016-11-08 21:04:57 +01:00
|
|
|
// Returns: false
|
2016-05-23 21:14:14 +02:00
|
|
|
util.isUndefined(foo);
|
2016-11-08 21:04:57 +01:00
|
|
|
// Returns: true
|
2016-05-23 21:14:14 +02:00
|
|
|
util.isUndefined(null);
|
2016-11-08 21:04:57 +01:00
|
|
|
// Returns: false
|
2016-01-17 18:39:07 +01:00
|
|
|
```
|
2013-05-22 00:22:05 +02:00
|
|
|
|
2016-05-20 18:57:01 +02:00
|
|
|
### util.log(string)
|
2016-08-21 11:11:15 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.3.0
|
|
|
|
deprecated: v6.0.0
|
|
|
|
-->
|
2013-05-22 00:22:05 +02:00
|
|
|
|
2016-07-16 00:35:38 +02:00
|
|
|
> Stability: 0 - Deprecated: Use a third party module instead.
|
2016-04-12 08:01:31 +02:00
|
|
|
|
2016-08-30 07:35:03 +02:00
|
|
|
* `string` {String}
|
2016-05-20 18:57:01 +02:00
|
|
|
|
|
|
|
The `util.log()` method prints the given `string` to `stdout` with an included
|
|
|
|
timestamp.
|
2013-05-22 00:22:05 +02:00
|
|
|
|
2016-05-20 18:57:01 +02:00
|
|
|
```js
|
2016-05-23 21:14:14 +02:00
|
|
|
const util = require('util');
|
2016-05-20 18:57:01 +02:00
|
|
|
|
|
|
|
util.log('Timestamped message.');
|
|
|
|
```
|
2013-05-22 00:22:05 +02:00
|
|
|
|
2016-08-30 07:35:03 +02:00
|
|
|
### util.print([...strings])
|
2016-08-21 11:11:15 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.3.0
|
|
|
|
deprecated: v0.11.3
|
|
|
|
-->
|
2013-05-22 00:22:05 +02:00
|
|
|
|
2016-07-16 00:35:38 +02:00
|
|
|
> Stability: 0 - Deprecated: Use [`console.log()`][] instead.
|
2013-05-22 00:22:05 +02:00
|
|
|
|
|
|
|
Deprecated predecessor of `console.log`.
|
|
|
|
|
2016-08-30 07:35:03 +02:00
|
|
|
### util.puts([...strings])
|
2016-08-21 11:11:15 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.3.0
|
|
|
|
deprecated: v0.11.3
|
|
|
|
-->
|
2015-11-05 16:28:34 +01:00
|
|
|
|
2016-07-16 00:35:38 +02:00
|
|
|
> Stability: 0 - Deprecated: Use [`console.log()`][] instead.
|
2015-11-05 16:28:34 +01:00
|
|
|
|
|
|
|
Deprecated predecessor of `console.log`.
|
2015-11-14 04:21:49 +01:00
|
|
|
|
2016-08-20 04:53:28 +02:00
|
|
|
### util.\_extend(target, source)
|
2016-08-21 11:11:15 +02:00
|
|
|
<!-- YAML
|
|
|
|
added: v0.7.5
|
|
|
|
deprecated: v6.0.0
|
|
|
|
-->
|
2016-01-27 14:05:43 +01:00
|
|
|
|
2016-07-16 00:35:38 +02:00
|
|
|
> Stability: 0 - Deprecated: Use [`Object.assign()`] instead.
|
2016-01-27 14:05:43 +01:00
|
|
|
|
2016-05-20 18:57:01 +02:00
|
|
|
The `util._extend()` method was never intended to be used outside of internal
|
|
|
|
Node.js modules. The community found and used it anyway.
|
2016-01-27 14:05:43 +01:00
|
|
|
|
|
|
|
It is deprecated and should not be used in new code. JavaScript comes with very
|
2016-07-12 04:37:16 +02:00
|
|
|
similar built-in functionality through [`Object.assign()`].
|
2016-01-27 14:05:43 +01:00
|
|
|
|
2015-11-28 00:30:32 +01:00
|
|
|
[`Array.isArray`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/isArray
|
2015-11-14 04:21:49 +01:00
|
|
|
[constructor]: https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Object/constructor
|
2016-05-02 07:03:23 +02:00
|
|
|
[semantically incompatible]: https://github.com/nodejs/node/issues/4179
|
2016-08-09 20:48:56 +02:00
|
|
|
[`util.inspect()`]: #util_util_inspect_object_options
|
2016-01-05 11:49:54 +01:00
|
|
|
[Customizing `util.inspect` colors]: #util_customizing_util_inspect_colors
|
2016-08-19 00:26:36 +02:00
|
|
|
[Custom inspection functions on Objects]: #util_custom_inspection_functions_on_objects
|
2015-11-28 00:30:32 +01:00
|
|
|
[`Error`]: errors.html#errors_class_error
|
2016-08-30 07:35:03 +02:00
|
|
|
[`console.log()`]: console.html#console_console_log_data_args
|
|
|
|
[`console.error()`]: console.html#console_console_error_data_args
|
2016-01-27 14:49:05 +01:00
|
|
|
[`Buffer.isBuffer()`]: buffer.html#buffer_class_method_buffer_isbuffer_obj
|
2016-07-12 04:37:16 +02:00
|
|
|
[`Object.assign()`]: https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Object/assign
|