fresh-test-themes
Version:
Samples resume themes in FRESH and JRS formats. For testing purposes.
24 lines (17 loc) • 427 B
JavaScript
/**
Test helper definitions for HackMyResume / FluentCV.
@license MIT. See LICENSE.md for details.
@module helpers/my-helper
*/
(function() {
// Block helper function definitions.
var MyTestHelpers = module.exports = {
/**
Return true if either value is truthy.
@method either
*/
myHelper: function(val, options) {
return val.toUpperCase();
}
};
}).call(this);