mirror of
https://github.com/xiaoxinpro/nginx-proxy-manager-zh.git
synced 2025-03-12 00:38:14 -04:00
8 lines
157 B
JavaScript
8 lines
157 B
JavaScript
const _ = require("lodash");
|
|
|
|
module.exports = function() {
|
|
let arr = _.values(arguments);
|
|
arr.unshift('[Backend API]');
|
|
console.log.apply(null, arr);
|
|
};
|