Moduł Node.js Util

❮ Wbudowane moduły


Przykład

Sformatuj ciąg, używając argumentów „Linus” i „6”:

var util = require('util');
var txt = 'Congratulate %s on his %dth birthday!';
var result = util.format(txt, 'Linus', 6);

console.log(result);

Definicja i użycie

Moduł Util zapewnia dostęp do niektórych funkcji narzędziowych.


Składnia

Składnia dołączania modułu Util do aplikacji:

var util = require('util');

Właściwości i metody użytkowania

Method Description
debuglog() Writes debug messages to the error object
deprecate() Marks the specified function as deprecated
format() Formats the specified string, using the specified arguments
inherits() Inherits methods from one function into another
inspect() Inspects the specified object and returns the object as a string

❮ Wbudowane moduły