UNPKG

ember-material-icons

Version:

Google Material icons for your ember-cli app

14 lines (8 loc) 231 B
/** * Typecast a value to a String, using an empty string value for null or * undefined. */ function toString(val){ return val == null ? '' : val.toString(); } module.exports = toString;