property.js 179 B

1234567891011
  1. exports.property = 1127;
  2. function func () {
  3. }
  4. func.property = 'foo';
  5. exports.func = func;
  6. exports.getFunctionProperty = () => {
  7. return `${func.property}-${process.type}`;
  8. };