property.js 174 B

123456789101112
  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. }