0.2.0 • Published 2 years ago
dummy-code v0.2.0
How To Use
Install the latest version of the package using yarn:
yarn add dummy-code@latest
or, if you prefer npm:
npm install --save dummy-code@latest
Now, you can import the functions you need:
import { ConvertDecimalToBinary } from "dummy-code";
Example:
import { ConvertDecimalToBinary } from "dummy-code";
let decimal = 10;
let binary = ConvertDecimalToBinary(decimal);
console.log("The Binary conversion of " + decimal + " is " + binary);
Dummy Functions
You can find the list of all the functions in the FUNCTION.md file.
Contributing
If you want to contribute to this project, please read the CONTRIBUTING.md file.
Join us in discussions
We use GitHub Discussions to talk about all sorts of topics related to documentation and this project. 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.