/**
* Test function
*
* @param {boolean} maybe - Yea?
* @returns {string}
*/
export function testing(yea) {
return yea ? 'Yes' : 'No';
}
export default { testing };
/**
* Test function
*
* @param {boolean} maybe - Yea?
* @returns {string}
*/
export function testing(yea) {
return yea ? 'Yes' : 'No';
}
export default { testing };