A collection of open source tools that can be used to help you in your daily activities.
npm install codinasion-tools
yarn add codinasion-tools
// JavaScript
import { ConvertDecimalToBinary } from "codinasion-tools";
let binary = ConvertDecimalToBinary(10);
console.log(binary); // 1010
// TypeScript
import { ConvertDecimalToBinary } from "codinasion-tools";
let binary: string = ConvertDecimalToBinary(10);
console.log(binary); // 1010
pip install codinasion-tools
# Python
from codinasion_tools import ConvertDecimalToBinary
binary = ConvertDecimalToBinary(10)
print(binary) # 1010
All codinasion-tools 🔧 and their documentation 📄 are easily available on our Website 🤗
If you're looking for a way to contribute, you can scan through our existing issues for something to work on. We want to make contributing to this project as easy and transparent as possible, and we are grateful to the community for contributing bug fixes and improvements. Read our Contributing Guide how you can take part in improving codinasion-tools.
We use GitHub Discussions to talk about all sorts of topics related to documentation and this site. For example: if you'd like help troubleshooting a PR, have a great new idea, or want to share something amazing, join us in the discussions.
|
Made with 💖 by Codinasion