deco.js 244 B

123456789101112
  1. 'use strict';
  2. const _ = require('lodash');
  3. const log = (operation) => {
  4. return (target, name, descriptor) => {
  5. if (operation) {
  6. descriptor.value.operation = operation;
  7. }
  8. return descriptor;
  9. };
  10. };
  11. module.exports = { log };