Modul Util Node.js

Modul Terpasang


Contoh

Format string menggunakan argumen "Linus" dan "6":

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

console.log(result);

Definisi dan Penggunaan

Modul Util menyediakan akses ke beberapa fungsi utilitas.


Sintaksis

Sintaks untuk menyertakan modul Util dalam aplikasi Anda:

var util = require('util');

Util Properties dan Metode

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

Modul Terpasang