mirror of
https://codeberg.org/keyoxide/doipjs.git
synced 2025-01-25 13:15:46 -07:00
17 lines
355 B
JavaScript
17 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;
|