You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
// Minimal entrypoint for @ansible/example
|
|
module.exports = function example(name) {
|
|
if (!name) return 'hello';
|
|
return `hello ${name}`;
|
|
};
|
|
|
|
// When required directly, export a default behaviour too
|
|
module.exports.default = module.exports;
|
|
|