* Guard text output, make sure undefined outputs * empty string * * @param {*} value * @return {String}
(value)
| 114 | */ |
| 115 | |
| 116 | function _toString(value) { |
| 117 | return value == null ? '' : value.toString(); |
| 118 | } |
| 119 | |
| 120 | /** |
| 121 | * Check and convert possible numeric strings to numbers |
no outgoing calls
no test coverage detected