mirror of
https://github.com/swc-project/swc.git
synced 2024-12-21 12:41:54 +03:00
bbaf619f63
swc_bundler: - [x] Fix wrapped esms. (denoland/deno#9307) - [x] Make test secure.
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);
|
|
};
|