mirror of
https://github.com/JamesIves/github-pages-deploy-action.git
synced 2023-12-15 20:03:39 +08:00
18 lines
355 B
JavaScript
18 lines
355 B
JavaScript
"use strict";
|
|
|
|
/**
|
|
* Returns a string representation of the value
|
|
*
|
|
* @param {*} value
|
|
* @returns {string}
|
|
*/
|
|
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;
|