/
eb
/
nodejs-screencast
Обзор
Документация
Войти
/
eb
/
nodejs-screencast
Код
Запросы
0
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
modules-2-module/5/logger.js
9 строк
222 B
Ilya Kantor
better readme
16 авг 2013, 00:20
16 авг 2013, 00:20
7b0fe6f
Код
Авторство
О чём код?
// var log = require('logger')(module); module.exports = function(module) { return function(/* ... */) { var args = [module.filename].concat([].slice.call(arguments)); console.log.apply(console, args); }; };