ramesis
v1.1.3
Published
This is a real world problem solving practical project.
Readme
Ramesis Project
Description
Ramesis is a utility library delivering modular, performant, and reliable JavaScript functions for everyday development. Inspired by Lodash, it provides a collection of commonly used helpers for arrays, objects, strings, and more.
Installation
npm install ramesisUsage
// Import the entire library
const ramesis = require('ramesis');
// Use a utility function
const result = [1, 2, 3, 4]
const size = 2
console.log(chunk(numbers, size)); // [[1, 2], [3, 4]]
// Or import specific functions (if using ES modules)
import { chunk } from 'ramesis';
console.log(chunk([1, 2, 3, 4], 2)); const { add, multi } = require('ramesis');
const sum = add(1, 2); // output = 3
const multi = multi(2, 2); // output = 4
Contributing
Contributions are welcome! Please follow these steps:
- Fork the repository.
- Create a new branch for your feature or bugfix.
- Write clear, concise code and add tests where appropriate.
- Submit a pull request with a detailed description of your changes.
Please adhere to the project's code style and ensure all tests pass before submitting your PR.
