mirror of
https://github.com/xiaoxinpro/nginx-proxy-manager-zh.git
synced 2025-02-08 12:38:14 -05: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);
|
|
};
|