mirror of
https://github.com/github/codeql-action.git
synced 2026-04-27 09:18:47 +00:00
6 lines
113 B
JavaScript
6 lines
113 B
JavaScript
'use strict'
|
|
|
|
module.exports = function (inp, callback) {
|
|
callback(null, inp + ' BAR (' + process.pid + ')')
|
|
}
|