mirror of
https://github.com/swc-project/swc.git
synced 2024-12-22 05:01:42 +03:00
21 lines
463 B
TypeScript
21 lines
463 B
TypeScript
// Loaded from https://deno.land/x/segno@v1.1.0/lib/helpers/toString.ts
|
|
|
|
|
|
export const toString = (input: any) => {
|
|
if (typeof input === 'object' && input !== null) {
|
|
if (typeof input.toString === 'function') {
|
|
input = input.toString();
|
|
} else {
|
|
input = '[object Object]';
|
|
}
|
|
} else if (
|
|
input === null ||
|
|
typeof input === 'undefined' ||
|
|
(isNaN(input) && !input.length)
|
|
) {
|
|
input = '';
|
|
}
|
|
|
|
return String(input);
|
|
};
|