UNPKG

@newdash/newdash

Version:

javascript/typescript utility library

11 lines (10 loc) 285 B
export default baseToString; /** * The base implementation of `toString` which doesn't convert nullish * values to empty strings. * * @private * @param {*} value The value to process. * @returns {string} Returns the string. */ declare function baseToString(value: any): string;