UNPKG

@0xcert/utils

Version:

General utility module with common helper functions.

7 lines (6 loc) 146 B
/** * Converts a value to string. */ export function toString(val: any) { return val !== null && val !== undefined ? val.toString() : null; }