当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Node.js util.formatWithOptions(inspectOptions, format[, ...args])用法及代码示例


util.formatWithOptions(inspectOptions, format[, ...args])

添加于:v10.0.0

参数

此函数与 util.format() 相同,不同之处在于它需要一个 inspectOptions 参数,该参数指定传递给 util.inspect() 的选项。

util.formatWithOptions({ colors: true }, 'See object %O', { foo: 42 });
// Returns 'See object { foo: 42 }', where `42` is colored as a number
// when printed to a terminal.

相关用法


注:本文由纯净天空筛选整理自nodejs.org大神的英文原创作品 util.formatWithOptions(inspectOptions, format[, ...args])。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。