mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-21 20:18:06 +02:00
11 lines
255 B
JavaScript
11 lines
255 B
JavaScript
// Cross-file helper: source function in a utility module
|
|||
function getUserInput() {
|
|||
return process.env.USER_INPUT;
|
|||
}
|
|||
|
|||
function sanitize(val) {
|
|||
return val.replace(/</g, '<').replace(/>/g, '>');
|
|||
}
|
|||
|
|||
module.exports = { getUserInput, sanitize };
|