* Converts Javascript Object to a string. * Returns an empty object string representation if a "falsy" value is passed * in. * * @method convertObjectToString * @param {Object} Any Javascript Object. * @return {String} A string representation of a Javascript Object.
(env)
| 32 | * @return {String} A string representation of a Javascript Object. |
| 33 | */ |
| 34 | function convertObjectToString(env) { |
| 35 | return JSON.stringify(env || {}); |
| 36 | } |
| 37 | |
| 38 | /** |
| 39 | * Returns the content for a specific type (section) for index.html. |
no outgoing calls
no test coverage detected
searching dependent graphs…