Skip to content
This repository has been archived by the owner on Apr 18, 2023. It is now read-only.

Commit

Permalink
v0.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
harshraj8843 committed Mar 18, 2023
1 parent ca76131 commit 94fa841
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 5 deletions.
16 changes: 12 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

[![CodeFactor](https://www.codefactor.io/repository/github/codinasion/tools/badge)](https://www.codefactor.io/repository/github/codinasion/tools) ![Code Size](https://img.shields.io/github/languages/code-size/codinasion/tools) ![version](https://img.shields.io/github/package-json/v/codinasion/tools?color=lightgreen) ![MIT](https://img.shields.io/github/license/codinasion/tools)

This is a collection of open source tools, developed by `Codinasion` team.
This is a collection of open source tools, written in TypeScript, that can be used in any JavaScript project.

## Tools

You can find the list of tools in the [`src`](src) directory.
You can find the documentation for each tool in the `src` directory.

## Getting Started

Expand All @@ -22,8 +22,16 @@ yarn add codinasion/tools

## Usage

```js
import { tool_name } from '@codinasion/tools';
You can import the tools individually:

```javascript
import { FormatStringToTitleCase } from 'codinasion/tools';
```

or, if you prefer to import all the tools:

```javascript
import * as tools from 'codinasion/tools';
```

## License
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@codinasion/tools",
"version": "0.0.2",
"version": "0.0.3",
"private": false,
"description": "Collection of open source tools",
"main": "lib/index.js",
Expand Down

0 comments on commit 94fa841

Please sign in to comment.