Skip to content
This repository has been archived by the owner on Dec 4, 2022. It is now read-only.

codinasion-archive/dummy-code

Repository files navigation

Dummy Code
Dummy Code

A collection of useful TypeScript functions

npm package size npm package downloads npm package version

How To UseFunctionsContributing

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.

Thanks for contributing 💜

  • Thanks for all your contributions and efforts
  • We thank you being part of our ✨ commUnity ✨ !

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.


Made with 💖 by Codinasion