sodash-shuvo
v1.2.5
Published
This is a simple real-world npm package named sodash-shuvo. It's like lodash but created by Shuvo.
Maintainers
Readme
Sodash-Shuvo
A lightweight JavaScript utility library inspired by Lodash — providing helpful functions for working with arrays, numbers, and more.
📖 Description
Sodash-Shuvo is a modern and minimal utility library that helps developers write cleaner and more reusable JavaScript code.
It offers simple helper functions for common operations like array chunking and basic mathematical calculations.
⚙️ Installation
Install the package using npm or yarn:
npm install sodash-shuvoor
yarn add sodash-shuvo🚀 Usage Examples
🧩 Array Utilities
const { chunk } = require('sodash-shuvo');
const numbers = ["shuvo", "sabuj", "shahriar", "shanto", "karim"];
const size = 3;
console.log(chunk(numbers, size));
// Output: [ [ 'shuvo', 'sabuj', 'shahriar' ], [ 'shanto', 'karim', ] ]➕ Math Utilities
const { add, multiply } = require('sodash-shuvo');
const sum = add(5, 10); // Output: 15
const result = multiply(5, 10); // Output: 50
console.log("Sum:", sum);
console.log("Result:", result);✨ Features
- 📚 Array manipulation (
chunk) - ➗ Math operations (
add,multiply) - 🔍 Lightweight and beginner-friendly
- 💡 Easy integration with Node.js projects
🧑💻 Contributing
Contributions are welcome!
- Fork the repository
- Create a feature branch
git checkout -b feature/AmazingFeature - Commit your changes
git commit -m "Add some AmazingFeature" - Push to the branch
git push origin feature/AmazingFeature - Open a Pull Request
📬 Support
- 🐞 Create an issue on GitHub
- 📧 Email: [email protected]
- 👨💻 GitHub: shuvo2o
🔑 Keywords
javascript · utilities · arrays · math · functional-programming · helper-functions · data-manipulation · lodash-alternative
🪪 License
This project is licensed under the MIT License — see the LICENSE file for details.
❤️ Author's Note
Sodash-Shuvo is maintained with love by Shuvo Chandra Das.
If you find this library helpful, please ⭐ star it on GitHub and share it with others!
Made with passion 🚀
