mirror of
https://github.com/crazy-max/ghaction-upx.git
synced 2024-11-23 02:46:09 -07:00
12 lines
254 B
JavaScript
12 lines
254 B
JavaScript
"use strict";
|
|
|
|
function valueToString(value) {
|
|
if (value && value.toString) {
|
|
/* eslint-disable-next-line local-rules/no-prototype-methods */
|
|
return value.toString();
|
|
}
|
|
return String(value);
|
|
}
|
|
|
|
module.exports = valueToString;
|