spectacle/app/helpers/toUpperCase.js
Kam Low 55b6e2c655 Fix #40 #47 render examples recursively
Fix #17 paths ordered as per swagger file
Remove json-stable-stringify dependency
2017-04-01 13:53:02 +02:00

11 lines
252 B
JavaScript

/**
* Converts a string to uppercase
* @name toUpperCase
* @param {string} value the input string
* @returns {string} the uppercase string
* @api public
*/
module.exports = function(value, options) {
return value ? value.toUpperCase() : '';
};