Skip to content

Instantly share code, notes, and snippets.

@kenanhancer
Created April 24, 2020 20:48
Show Gist options
  • Save kenanhancer/a011b3f95a881cc90cacb12056366f6f to your computer and use it in GitHub Desktop.
Save kenanhancer/a011b3f95a881cc90cacb12056366f6f to your computer and use it in GitHub Desktop.
nut-ioc example module
module.exports.ServiceName = ""; //fileName if empty,null or undefined
module.exports.Namespace = ""; //if empty, then consume helper dependency with name directly
module.exports.Service = ({
getFullName: ({ firstName, lastName }) => {
return `${firstName} ${lastName}`;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment