mirror of
https://github.com/stCarolas/setup-maven.git
synced 2025-02-14 19:55:41 +00:00
![Uwe Daub](/assets/img/avatar_default.png)
See here for further details: https://github.blog/changelog/2020-10-01-github-actions-deprecating-set-env-and-add-path-commands
19 lines
620 B
JavaScript
19 lines
620 B
JavaScript
"use strict";
|
|
// We use any as a valid input type
|
|
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
/**
|
|
* Sanitizes an input into a string so it can be passed into issueCommand safely
|
|
* @param input input to sanitize into a string
|
|
*/
|
|
function toCommandValue(input) {
|
|
if (input === null || input === undefined) {
|
|
return '';
|
|
}
|
|
else if (typeof input === 'string' || input instanceof String) {
|
|
return input;
|
|
}
|
|
return JSON.stringify(input);
|
|
}
|
|
exports.toCommandValue = toCommandValue;
|
|
//# sourceMappingURL=utils.js.map
|