2017-02-08 00:56:07 +01:00
|
|
|
# Util
|
2010-10-28 14:18:16 +02:00
|
|
|
|
2017-01-23 04:16:21 +01:00
|
|
|
<!--introduced_in=v0.10.0-->
|
|
|
|
|
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
|
|
|
|
2017-04-28 03:57:12 +02:00
|
|
|
## util.callbackify(original)
|
|
|
|
<!-- YAML
|
2017-07-19 17:40:29 +02:00
|
|
|
added: v8.2.0
|
2017-04-28 03:57:12 +02:00
|
|
|
-->
|
|
|
|
|
|
|
|
* `original` {Function} An `async` function
|
|
|
|
* Returns: {Function} a callback style function
|
|
|
|
|
|
|
|
Takes an `async` function (or a function that returns a Promise) and returns a
|
|
|
|
function following the Node.js error first callback style. In the callback, the
|
|
|
|
first argument will be the rejection reason (or `null` if the Promise resolved),
|
|
|
|
and the second argument will be the resolved value.
|
|
|
|
|
|
|
|
For example:
|
|
|
|
|
|
|
|
```js
|
|
|
|
const util = require('util');
|
|
|
|
|
|
|
|
async function fn() {
|
|
|
|
return await Promise.resolve('hello world');
|
|
|
|
}
|
|
|
|
const callbackFunction = util.callbackify(fn);
|
|
|
|
|
|
|
|
callbackFunction((err, ret) => {
|
|
|
|
if (err) throw err;
|
|
|
|
console.log(ret);
|
|
|
|
});
|
|
|
|
```
|
|
|
|
|
|
|
|
Will print:
|
|
|
|
|
|
|
|
```txt
|
|
|
|
hello world
|
|
|
|
```
|
|
|
|
|
|
|
|
*Note*:
|
|
|
|
|
|
|
|
* The callback is executed asynchronously, and will have a limited stack trace.
|
|
|
|
If the callback throws, the process will emit an [`'uncaughtException'`][]
|
|
|
|
event, and if not handled will exit.
|
|
|
|
|
|
|
|
* Since `null` has a special meaning as the first argument to a callback, if a
|
|
|
|
wrapped function rejects a `Promise` with a falsy value as a reason, the value
|
|
|
|
is wrapped in an `Error` with the original value stored in a field named
|
|
|
|
`reason`.
|
|
|
|
```js
|
|
|
|
function fn() {
|
|
|
|
return Promise.reject(null);
|
|
|
|
}
|
|
|
|
const callbackFunction = util.callbackify(fn);
|
|
|
|
|
|
|
|
callbackFunction((err, ret) => {
|
|
|
|
// When the Promise was rejected with `null` it is wrapped with an Error and
|
|
|
|
// the original value is stored in `reason`.
|
|
|
|
err && err.hasOwnProperty('reason') && err.reason === null; // true
|
|
|
|
});
|
|
|
|
```
|
|
|
|
|
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
|
|
|
|
2017-02-04 16:15:33 +01:00
|
|
|
* `section` {string} A string identifying the portion of the application for
|
2016-05-20 18:57:01 +02:00
|
|
|
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
|
|
|
|
2017-06-02 11:20:47 +02:00
|
|
|
<!-- eslint-disable prefer-rest-params -->
|
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() {
|
2017-04-22 14:22:40 +02:00
|
|
|
for (let i = 0, len = arguments.length; i < len; ++i) {
|
2016-01-17 18:39:07 +01:00
|
|
|
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
|
2017-08-13 22:06:00 +02:00
|
|
|
changes:
|
2017-08-13 22:33:49 +02:00
|
|
|
- version: v8.4.0
|
2017-08-13 22:06:00 +02:00
|
|
|
pr-url: https://github.com/nodejs/node/pull/14558
|
|
|
|
description: The `%o` and `%O` specifiers are supported now.
|
2016-08-21 11:11:15 +02:00
|
|
|
-->
|
2011-08-05 16:37:16 +02:00
|
|
|
|
2017-02-04 16:15:33 +01: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.
|
2016-12-16 21:20:15 +01:00
|
|
|
* `%d` - Number (integer or floating point value).
|
|
|
|
* `%i` - Integer.
|
|
|
|
* `%f` - Floating point value.
|
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.
|
2017-08-01 00:08:44 +02:00
|
|
|
* `%o` - Object. A string representation of an object
|
|
|
|
with generic JavaScript object formatting.
|
|
|
|
Similar to `util.inspect()` with options `{ showHidden: true, depth: 4, showProxy: true }`.
|
|
|
|
This will show the full object including non-enumerable symbols and properties.
|
|
|
|
* `%O` - Object. A string representation of an object
|
|
|
|
with generic JavaScript object formatting.
|
|
|
|
Similar to `util.inspect()` without options.
|
|
|
|
This will show the full object not including non-enumerable symbols and properties.
|
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
|
|
|
|
2017-07-01 15:10:36 +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 then concatenated
|
|
|
|
to the returned string, each delimited by a space. Excessive arguments whose
|
|
|
|
`typeof` is `'object'` or `'symbol'` (except `null`) will be transformed by
|
|
|
|
`util.inspect()`.
|
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
|
|
|
|
2017-07-01 15:10:36 +02:00
|
|
|
If the first argument is not a 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
|
|
|
|
2017-04-12 23:12:02 +02:00
|
|
|
If only one argument is passed to `util.format()`, it is returned as it is
|
|
|
|
without any formatting.
|
|
|
|
|
|
|
|
```js
|
|
|
|
util.format('%% %s'); // '%% %s'
|
|
|
|
```
|
|
|
|
|
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
|
2017-02-21 23:38:49 +01:00
|
|
|
changes:
|
|
|
|
- version: v5.0.0
|
|
|
|
pr-url: https://github.com/nodejs/node/pull/3455
|
|
|
|
description: The `constructor` parameter can refer to an ES6 class now.
|
2016-08-21 11:11:15 +02:00
|
|
|
-->
|
2011-08-05 16:37:16 +02:00
|
|
|
|
2017-05-20 22:15:58 +02:00
|
|
|
*Note*: Usage of `util.inherits()` is discouraged. Please use the ES6 `class`
|
|
|
|
and `extends` keywords to get language level inheritance support. Also note
|
|
|
|
that the two styles are [semantically incompatible][].
|
2016-05-02 07:03:23 +02:00
|
|
|
|
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 {
|
|
|
|
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
|
2017-02-21 23:38:49 +01:00
|
|
|
changes:
|
|
|
|
- version: v6.6.0
|
|
|
|
pr-url: https://github.com/nodejs/node/pull/8174
|
|
|
|
description: Custom inspection functions can now return `this`.
|
|
|
|
- version: v6.3.0
|
|
|
|
pr-url: https://github.com/nodejs/node/pull/7499
|
|
|
|
description: The `breakLength` option is supported now.
|
|
|
|
- version: v6.1.0
|
|
|
|
pr-url: https://github.com/nodejs/node/pull/6334
|
|
|
|
description: The `maxArrayLength` option is supported now; in particular,
|
|
|
|
long arrays are truncated by default.
|
|
|
|
- version: v6.1.0
|
|
|
|
pr-url: https://github.com/nodejs/node/pull/6465
|
|
|
|
description: The `showProxy` option is supported now.
|
2016-08-21 11:11:15 +02:00
|
|
|
-->
|
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)`
|
2017-09-26 23:14:21 +02:00
|
|
|
(or the equivalent but deprecated `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;
|
|
|
|
}
|
|
|
|
|
2017-09-26 23:14:21 +02:00
|
|
|
[util.inspect.custom](depth, options) {
|
2016-10-01 02:56:16 +02:00
|
|
|
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);
|
2017-04-21 16:38:31 +02:00
|
|
|
const inner = util.inspect(this.value, newOptions)
|
2017-05-30 16:03:00 +02:00
|
|
|
.replace(/\n/g, `\n${padding}`);
|
|
|
|
return `${options.stylize('Box', 'special')}< ${inner} >`;
|
2016-10-01 02:56:16 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
```
|
|
|
|
|
2017-02-13 03:49:35 +01:00
|
|
|
### util.inspect.custom
|
|
|
|
<!-- YAML
|
|
|
|
added: v6.6.0
|
|
|
|
-->
|
|
|
|
|
|
|
|
A Symbol that can be used to declare custom inspect functions, see
|
|
|
|
[Custom inspection functions on Objects][].
|
|
|
|
|
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');
|
2017-05-30 16:03:00 +02:00
|
|
|
const arr = Array(101).fill(0);
|
2016-08-09 20:48:56 +02:00
|
|
|
|
|
|
|
console.log(arr); // logs the truncated array
|
|
|
|
util.inspect.defaultOptions.maxArrayLength = null;
|
|
|
|
console.log(arr); // logs the full array
|
|
|
|
```
|
|
|
|
|
2017-04-14 18:28:16 +02:00
|
|
|
## util.promisify(original)
|
|
|
|
<!-- YAML
|
2017-03-16 04:26:14 +01:00
|
|
|
added: v8.0.0
|
2017-04-14 18:28:16 +02:00
|
|
|
-->
|
|
|
|
|
|
|
|
* `original` {Function}
|
|
|
|
|
|
|
|
Takes a function following the common Node.js callback style, i.e. taking a
|
|
|
|
`(err, value) => ...` callback as the last argument, and returns a version
|
|
|
|
that returns promises.
|
|
|
|
|
|
|
|
For example:
|
|
|
|
|
|
|
|
```js
|
|
|
|
const util = require('util');
|
|
|
|
const fs = require('fs');
|
|
|
|
|
|
|
|
const stat = util.promisify(fs.stat);
|
|
|
|
stat('.').then((stats) => {
|
|
|
|
// Do something with `stats`
|
|
|
|
}).catch((error) => {
|
|
|
|
// Handle the error.
|
|
|
|
});
|
|
|
|
```
|
|
|
|
|
|
|
|
Or, equivalently using `async function`s:
|
|
|
|
|
|
|
|
```js
|
|
|
|
const util = require('util');
|
|
|
|
const fs = require('fs');
|
|
|
|
|
|
|
|
const stat = util.promisify(fs.stat);
|
|
|
|
|
|
|
|
async function callStat() {
|
|
|
|
const stats = await stat('.');
|
|
|
|
console.log(`This directory is owned by ${stats.uid}`);
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
If there is an `original[util.promisify.custom]` property present, `promisify`
|
|
|
|
will return its value, see [Custom promisified functions][].
|
|
|
|
|
|
|
|
`promisify()` assumes that `original` is a function taking a callback as its
|
|
|
|
final argument in all cases, and the returned function will result in undefined
|
2017-05-26 19:51:15 +02:00
|
|
|
behavior if it does not.
|
2017-04-14 18:28:16 +02:00
|
|
|
|
|
|
|
### Custom promisified functions
|
|
|
|
|
|
|
|
Using the `util.promisify.custom` symbol one can override the return value of
|
|
|
|
[`util.promisify()`][]:
|
|
|
|
|
|
|
|
```js
|
|
|
|
const util = require('util');
|
|
|
|
|
|
|
|
function doSomething(foo, callback) {
|
|
|
|
// ...
|
|
|
|
}
|
|
|
|
|
|
|
|
doSomething[util.promisify.custom] = function(foo) {
|
|
|
|
return getPromiseSomehow();
|
|
|
|
};
|
|
|
|
|
|
|
|
const promisified = util.promisify(doSomething);
|
|
|
|
console.log(promisified === doSomething[util.promisify.custom]);
|
2017-06-27 22:32:32 +02:00
|
|
|
// prints 'true'
|
2017-04-14 18:28:16 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
This can be useful for cases where the original function does not follow the
|
|
|
|
standard format of taking an error-first callback as the last argument.
|
|
|
|
|
2017-10-10 03:46:14 +02:00
|
|
|
For example, with a function that takes in `(foo, onSuccessCallback, onErrorCallback)`:
|
|
|
|
|
|
|
|
```js
|
|
|
|
doSomething[util.promisify.custom] = function(foo) {
|
|
|
|
return new Promise(function(resolve, reject) {
|
|
|
|
doSomething(foo, resolve, reject);
|
|
|
|
});
|
|
|
|
};
|
|
|
|
```
|
|
|
|
|
2017-04-14 18:28:16 +02:00
|
|
|
### util.promisify.custom
|
|
|
|
<!-- YAML
|
2017-03-16 04:26:14 +01:00
|
|
|
added: v8.0.0
|
2017-04-14 18:28:16 +02:00
|
|
|
-->
|
|
|
|
|
|
|
|
* {symbol}
|
|
|
|
|
|
|
|
A Symbol that can be used to declare custom promisified variants of functions,
|
|
|
|
see [Custom promisified functions][].
|
|
|
|
|
2017-07-30 12:09:13 +02:00
|
|
|
## Class: util.TextDecoder
|
2017-06-12 17:25:53 +02:00
|
|
|
<!-- YAML
|
2017-08-02 12:52:34 +02:00
|
|
|
added: v8.3.0
|
2017-06-12 17:25:53 +02:00
|
|
|
-->
|
|
|
|
|
|
|
|
> Stability: 1 - Experimental
|
|
|
|
|
|
|
|
An implementation of the [WHATWG Encoding Standard][] `TextDecoder` API.
|
|
|
|
|
|
|
|
```js
|
|
|
|
const decoder = new TextDecoder('shift_jis');
|
|
|
|
let string = '';
|
|
|
|
let buffer;
|
|
|
|
while (buffer = getNextChunkSomehow()) {
|
|
|
|
string += decoder.decode(buffer, { stream: true });
|
|
|
|
}
|
|
|
|
string += decoder.decode(); // end-of-stream
|
|
|
|
```
|
|
|
|
|
2017-07-30 12:09:13 +02:00
|
|
|
### WHATWG Supported Encodings
|
2017-06-12 17:25:53 +02:00
|
|
|
|
|
|
|
Per the [WHATWG Encoding Standard][], the encodings supported by the
|
|
|
|
`TextDecoder` API are outlined in the tables below. For each encoding,
|
2017-07-30 12:09:13 +02:00
|
|
|
one or more aliases may be used.
|
2017-06-12 17:25:53 +02:00
|
|
|
|
2017-07-30 12:09:13 +02:00
|
|
|
Different Node.js build configurations support different sets of encodings.
|
|
|
|
While a very basic set of encodings is supported even on Node.js builds without
|
|
|
|
ICU enabled, support for some encodings is provided only when Node.js is built
|
|
|
|
with ICU and using the full ICU data (see [Internationalization][]).
|
|
|
|
|
|
|
|
#### Encodings Supported Without ICU
|
2017-06-12 17:25:53 +02:00
|
|
|
|
2017-08-09 10:45:18 +02:00
|
|
|
| Encoding | Aliases |
|
|
|
|
| ----------- | --------------------------------- |
|
|
|
|
| `'utf-8'` | `'unicode-1-1-utf-8'`, `'utf8'` |
|
|
|
|
| `'utf-16le'` | `'utf-16'` |
|
2017-06-12 17:25:53 +02:00
|
|
|
|
2017-07-30 12:09:13 +02:00
|
|
|
#### Encodings Supported by Default (With ICU)
|
|
|
|
|
2017-08-09 10:45:18 +02:00
|
|
|
| Encoding | Aliases |
|
|
|
|
| ----------- | --------------------------------- |
|
|
|
|
| `'utf-8'` | `'unicode-1-1-utf-8'`, `'utf8'` |
|
|
|
|
| `'utf-16le'` | `'utf-16'` |
|
|
|
|
| `'utf-16be'` | |
|
2017-07-30 12:09:13 +02:00
|
|
|
|
|
|
|
#### Encodings Requiring Full ICU Data
|
2017-06-12 17:25:53 +02:00
|
|
|
|
2017-08-09 10:45:18 +02:00
|
|
|
| Encoding | Aliases |
|
|
|
|
| ----------------- | -------------------------------- |
|
|
|
|
| `'ibm866'` | `'866'`, `'cp866'`, `'csibm866'` |
|
|
|
|
| `'iso-8859-2'` | `'csisolatin2'`, `'iso-ir-101'`, `'iso8859-2'`, `'iso88592'`, `'iso_8859-2'`, `'iso_8859-2:1987'`, `'l2'`, `'latin2'` |
|
|
|
|
| `'iso-8859-3'` | `'csisolatin3'`, `'iso-ir-109'`, `'iso8859-3'`, `'iso88593'`, `'iso_8859-3'`, `'iso_8859-3:1988'`, `'l3'`, `'latin3'` |
|
|
|
|
| `'iso-8859-4'` | `'csisolatin4'`, `'iso-ir-110'`, `'iso8859-4'`, `'iso88594'`, `'iso_8859-4'`, `'iso_8859-4:1988'`, `'l4'`, `'latin4'` |
|
|
|
|
| `'iso-8859-5'` | `'csisolatincyrillic'`, `'cyrillic'`, `'iso-ir-144'`, `'iso8859-5'`, `'iso88595'`, `'iso_8859-5'`, `'iso_8859-5:1988'` |
|
|
|
|
| `'iso-8859-6'` | `'arabic'`, `'asmo-708'`, `'csiso88596e'`, `'csiso88596i'`, `'csisolatinarabic'`, `'ecma-114'`, `'iso-8859-6-e'`, `'iso-8859-6-i'`, `'iso-ir-127'`, `'iso8859-6'`, `'iso88596'`, `'iso_8859-6'`, `'iso_8859-6:1987'` |
|
|
|
|
| `'iso-8859-7'` | `'csisolatingreek'`, `'ecma-118'`, `'elot_928'`, `'greek'`, `'greek8'`, `'iso-ir-126'`, `'iso8859-7'`, `'iso88597'`, `'iso_8859-7'`, `'iso_8859-7:1987'`, `'sun_eu_greek'` |
|
|
|
|
| `'iso-8859-8'` | `'csiso88598e'`, `'csisolatinhebrew'`, `'hebrew'`, `'iso-8859-8-e'`, `'iso-ir-138'`, `'iso8859-8'`, `'iso88598'`, `'iso_8859-8'`, `'iso_8859-8:1988'`, `'visual'` |
|
|
|
|
| `'iso-8859-8-i'` | `'csiso88598i'`, `'logical'` |
|
|
|
|
| `'iso-8859-10'` | `'csisolatin6'`, `'iso-ir-157'`, `'iso8859-10'`, `'iso885910'`, `'l6'`, `'latin6'` |
|
|
|
|
| `'iso-8859-13'` | `'iso8859-13'`, `'iso885913'` |
|
|
|
|
| `'iso-8859-14'` | `'iso8859-14'`, `'iso885914'` |
|
|
|
|
| `'iso-8859-15'` | `'csisolatin9'`, `'iso8859-15'`, `'iso885915'`, `'iso_8859-15'`, `'l9'` |
|
|
|
|
| `'koi8-r'` | `'cskoi8r'`, `'koi'`, `'koi8'`, `'koi8_r'` |
|
|
|
|
| `'koi8-u'` | `'koi8-ru'` |
|
|
|
|
| `'macintosh'` | `'csmacintosh'`, `'mac'`, `'x-mac-roman'` |
|
|
|
|
| `'windows-874'` | `'dos-874'`, `'iso-8859-11'`, `'iso8859-11'`, `'iso885911'`, `'tis-620'` |
|
|
|
|
| `'windows-1250'` | `'cp1250'`, `'x-cp1250'` |
|
|
|
|
| `'windows-1251'` | `'cp1251'`, `'x-cp1251'` |
|
|
|
|
| `'windows-1252'` | `'ansi_x3.4-1968'`, `'ascii'`, `'cp1252'`, `'cp819'`, `'csisolatin1'`, `'ibm819'`, `'iso-8859-1'`, `'iso-ir-100'`, `'iso8859-1'`, `'iso88591'`, `'iso_8859-1'`, `'iso_8859-1:1987'`, `'l1'`, `'latin1'`, `'us-ascii'`, `'x-cp1252'` |
|
|
|
|
| `'windows-1253'` | `'cp1253'`, `'x-cp1253'` |
|
|
|
|
| `'windows-1254'` | `'cp1254'`, `'csisolatin5'`, `'iso-8859-9'`, `'iso-ir-148'`, `'iso8859-9'`, `'iso88599'`, `'iso_8859-9'`, `'iso_8859-9:1989'`, `'l5'`, `'latin5'`, `'x-cp1254'` |
|
|
|
|
| `'windows-1255'` | `'cp1255'`, `'x-cp1255'` |
|
|
|
|
| `'windows-1256'` | `'cp1256'`, `'x-cp1256'` |
|
|
|
|
| `'windows-1257'` | `'cp1257'`, `'x-cp1257'` |
|
|
|
|
| `'windows-1258'` | `'cp1258'`, `'x-cp1258'` |
|
|
|
|
| `'x-mac-cyrillic'` | `'x-mac-ukrainian'` |
|
|
|
|
| `'gbk'` | `'chinese'`, `'csgb2312'`, `'csiso58gb231280'`, `'gb2312'`, `'gb_2312'`, `'gb_2312-80'`, `'iso-ir-58'`, `'x-gbk'` |
|
|
|
|
| `'gb18030'` | |
|
|
|
|
| `'big5'` | `'big5-hkscs'`, `'cn-big5'`, `'csbig5'`, `'x-x-big5'` |
|
|
|
|
| `'euc-jp'` | `'cseucpkdfmtjapanese'`, `'x-euc-jp'` |
|
|
|
|
| `'iso-2022-jp'` | `'csiso2022jp'` |
|
|
|
|
| `'shift_jis'` | `'csshiftjis'`, `'ms932'`, `'ms_kanji'`, `'shift-jis'`, `'sjis'`, `'windows-31j'`, `'x-sjis'` |
|
|
|
|
| `'euc-kr'` | `'cseuckr'`, `'csksc56011987'`, `'iso-ir-149'`, `'korean'`, `'ks_c_5601-1987'`, `'ks_c_5601-1989'`, `'ksc5601'`, `'ksc_5601'`, `'windows-949'` |
|
2017-06-12 17:25:53 +02:00
|
|
|
|
|
|
|
*Note*: The `'iso-8859-16'` encoding listed in the [WHATWG Encoding Standard][]
|
|
|
|
is not supported.
|
|
|
|
|
2017-07-30 12:09:13 +02:00
|
|
|
### new TextDecoder([encoding[, options]])
|
2017-06-12 17:25:53 +02:00
|
|
|
|
|
|
|
* `encoding` {string} Identifies the `encoding` that this `TextDecoder` instance
|
|
|
|
supports. Defaults to `'utf-8'`.
|
|
|
|
* `options` {Object}
|
|
|
|
* `fatal` {boolean} `true` if decoding failures are fatal. Defaults to
|
2017-07-30 12:09:13 +02:00
|
|
|
`false`. This option is only supported when ICU is enabled (see
|
|
|
|
[Internationalization][]).
|
2017-06-12 17:25:53 +02:00
|
|
|
* `ignoreBOM` {boolean} When `true`, the `TextDecoder` will include the byte
|
|
|
|
order mark in the decoded result. When `false`, the byte order mark will
|
|
|
|
be removed from the output. This option is only used when `encoding` is
|
|
|
|
`'utf-8'`, `'utf-16be'` or `'utf-16le'`. Defaults to `false`.
|
|
|
|
|
|
|
|
Creates an new `TextDecoder` instance. The `encoding` may specify one of the
|
|
|
|
supported encodings or an alias.
|
|
|
|
|
2017-07-30 12:09:13 +02:00
|
|
|
### textDecoder.decode([input[, options]])
|
2017-06-12 17:25:53 +02:00
|
|
|
|
|
|
|
* `input` {ArrayBuffer|DataView|TypedArray} An `ArrayBuffer`, `DataView` or
|
|
|
|
Typed Array instance containing the encoded data.
|
|
|
|
* `options` {Object}
|
|
|
|
* `stream` {boolean} `true` if additional chunks of data are expected.
|
|
|
|
Defaults to `false`.
|
|
|
|
* Returns: {string}
|
|
|
|
|
|
|
|
Decodes the `input` and returns a string. If `options.stream` is `true`, any
|
|
|
|
incomplete byte sequences occuring at the end of the `input` are buffered
|
|
|
|
internally and emitted after the next call to `textDecoder.decode()`.
|
|
|
|
|
|
|
|
If `textDecoder.fatal` is `true`, decoding errors that occur will result in a
|
|
|
|
`TypeError` being thrown.
|
|
|
|
|
2017-07-30 12:09:13 +02:00
|
|
|
### textDecoder.encoding
|
2017-06-12 17:25:53 +02:00
|
|
|
|
2017-07-30 12:09:13 +02:00
|
|
|
* {string}
|
2017-06-12 17:25:53 +02:00
|
|
|
|
|
|
|
The encoding supported by the `TextDecoder` instance.
|
|
|
|
|
2017-07-30 12:09:13 +02:00
|
|
|
### textDecoder.fatal
|
2017-06-12 17:25:53 +02:00
|
|
|
|
2017-07-30 12:09:13 +02:00
|
|
|
* {boolean}
|
2017-06-12 17:25:53 +02:00
|
|
|
|
|
|
|
The value will be `true` if decoding errors result in a `TypeError` being
|
|
|
|
thrown.
|
|
|
|
|
2017-07-30 12:09:13 +02:00
|
|
|
### textDecoder.ignoreBOM
|
2017-06-12 17:25:53 +02:00
|
|
|
|
2017-07-30 12:09:13 +02:00
|
|
|
* {boolean}
|
2017-06-12 17:25:53 +02:00
|
|
|
|
|
|
|
The value will be `true` if the decoding result will include the byte order
|
|
|
|
mark.
|
|
|
|
|
2017-07-30 12:09:13 +02:00
|
|
|
## Class: util.TextEncoder
|
2017-06-12 17:25:53 +02:00
|
|
|
<!-- YAML
|
2017-08-02 12:52:34 +02:00
|
|
|
added: v8.3.0
|
2017-06-12 17:25:53 +02:00
|
|
|
-->
|
|
|
|
|
|
|
|
> Stability: 1 - Experimental
|
|
|
|
|
|
|
|
An implementation of the [WHATWG Encoding Standard][] `TextEncoder` API. All
|
2017-07-30 12:09:13 +02:00
|
|
|
instances of `TextEncoder` only support UTF-8 encoding.
|
2017-06-12 17:25:53 +02:00
|
|
|
|
|
|
|
```js
|
|
|
|
const encoder = new TextEncoder();
|
|
|
|
const uint8array = encoder.encode('this is some data');
|
|
|
|
```
|
|
|
|
|
2017-07-30 12:09:13 +02:00
|
|
|
### textEncoder.encode([input])
|
2017-06-12 17:25:53 +02:00
|
|
|
|
|
|
|
* `input` {string} The text to encode. Defaults to an empty string.
|
|
|
|
* Returns: {Uint8Array}
|
|
|
|
|
2017-07-30 12:09:13 +02:00
|
|
|
UTF-8 encodes the `input` string and returns a `Uint8Array` containing the
|
2017-06-12 17:25:53 +02:00
|
|
|
encoded bytes.
|
|
|
|
|
2017-07-30 12:09:13 +02:00
|
|
|
### textDecoder.encoding
|
|
|
|
|
|
|
|
* {string}
|
|
|
|
|
|
|
|
The encoding supported by the `TextEncoder` instance. Always set to `'utf-8'`.
|
|
|
|
|
2017-02-13 03:49:35 +01: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.\_extend(target, source)
|
2016-08-19 00:26:36 +02:00
|
|
|
<!-- YAML
|
2017-02-13 03:49:35 +01:00
|
|
|
added: v0.7.5
|
|
|
|
deprecated: v6.0.0
|
2016-08-19 00:26:36 +02:00
|
|
|
-->
|
|
|
|
|
2017-02-13 03:49:35 +01:00
|
|
|
> Stability: 0 - Deprecated: Use [`Object.assign()`] instead.
|
2016-08-19 00:26:36 +02:00
|
|
|
|
2017-02-13 03:49:35 +01: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-05-20 18:57:01 +02:00
|
|
|
|
2017-02-13 03:49:35 +01:00
|
|
|
It is deprecated and should not be used in new code. JavaScript comes with very
|
|
|
|
similar built-in functionality through [`Object.assign()`].
|
2016-05-20 18:57:01 +02:00
|
|
|
|
|
|
|
### 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
|
|
|
|
2017-02-04 16:15:33 +01: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
|
|
|
|
2017-02-04 16:15:33 +01: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
|
2017-04-21 16:38:31 +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() {}
|
2017-04-28 02:27:05 +02:00
|
|
|
const Bar = () => {};
|
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
|
2017-04-21 16:38:31 +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
|
|
|
|
2017-02-04 16:15:33 +01: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
|
|
|
|
2017-07-25 23:02:37 +02:00
|
|
|
[`'uncaughtException'`]: process.html#process_event_uncaughtexception
|
2015-11-28 00:30:32 +01:00
|
|
|
[`Array.isArray`]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/isArray
|
2016-01-27 14:49:05 +01:00
|
|
|
[`Buffer.isBuffer()`]: buffer.html#buffer_class_method_buffer_isbuffer_obj
|
2017-05-08 18:30:13 +02:00
|
|
|
[`Error`]: errors.html#errors_class_error
|
2016-07-12 04:37:16 +02:00
|
|
|
[`Object.assign()`]: https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Object/assign
|
2017-05-08 18:30:13 +02:00
|
|
|
[`console.error()`]: console.html#console_console_error_data_args
|
|
|
|
[`console.log()`]: console.html#console_console_log_data_args
|
|
|
|
[`util.inspect()`]: #util_util_inspect_object_options
|
2017-04-14 18:28:16 +02:00
|
|
|
[`util.promisify()`]: #util_util_promisify_original
|
2017-05-08 18:30:13 +02:00
|
|
|
[Custom inspection functions on Objects]: #util_custom_inspection_functions_on_objects
|
2017-04-14 18:28:16 +02:00
|
|
|
[Custom promisified functions]: #util_custom_promisified_functions
|
2017-07-25 23:02:37 +02:00
|
|
|
[Customizing `util.inspect` colors]: #util_customizing_util_inspect_colors
|
|
|
|
[Internationalization]: intl.html
|
|
|
|
[WHATWG Encoding Standard]: https://encoding.spec.whatwg.org/
|
2017-05-08 18:30:13 +02:00
|
|
|
[constructor]: https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Object/constructor
|
|
|
|
[semantically incompatible]: https://github.com/nodejs/node/issues/4179
|