@atulkamble/atul
v1.0.0
Published
Utility package by Atul Kamble
Downloads
16
Readme
@atulkamble/atul
Utility npm package by Atul Kamble
Installation
npm install @atulkamble/atulUsage
const { hello } = require("@atulkamble/atul");
console.log(hello("Cloud"));Output
Hello Cloud, from Atul 🚀API
hello(name)
Returns a greeting message.
- Parameters:
name(string, optional): Name to greet. Defaults to "World".
- Returns: String with greeting message.
Examples
const { hello } = require("@atulkamble/atul");
console.log(hello()); // Hello World, from Atul 🚀
console.log(hello("DevOps")); // Hello DevOps, from Atul 🚀
console.log(hello("Cloud")); // Hello Cloud, from Atul 🚀Author
Atul Kamble
License
MIT
