當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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])。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。