({
route = '',
token = '',
sso_account = '',
ip_address = '',
query_time = '',
ref = null
} = {})
| 25 | |
| 26 | |
| 27 | function operation_memo({ |
| 28 | route = '', |
| 29 | token = '', |
| 30 | sso_account = '', |
| 31 | ip_address = '', |
| 32 | query_time = '', |
| 33 | ref = null |
| 34 | } = {}) { |
| 35 | return { |
| 36 | route, |
| 37 | token, |
| 38 | sso_account, |
| 39 | ip_address, |
| 40 | query_time, |
| 41 | process_id: '' + process.pid, // automatically set to current process pid |
| 42 | ref |
| 43 | }; |
| 44 | } |
| 45 | |
| 46 | |
| 47 | module.exports = { |
no outgoing calls
no test coverage detected