UNPKG

mout

Version:

Modular Utilities

11 lines (10 loc) 250 B
"use strict"; exports.__esModule = true; /** * Typecast a value to a String, using an empty string value for null or * undefined. */ function toString(val) { return val == null ? '' : val.toString(); } exports["default"] = toString;