1.0.1 • Published 4 years ago

thicker v1.0.1

Weekly downloads
3
License
MIT
Repository
github
Last release
4 years ago

THICKER

Description

THICKER is a set of typescript utils wrapped inside a nice little package.

Overview

THICKER

Directory structure

.
├── core
│   ├── browser
│   │   └── index.ts
│   ├── crypto
│   │   ├── index.ts
│   │   └── utils.ts
│   ├── geometry
│   │   └── index.ts
│   ├── random
│   │   └── index.ts
│   ├── recursion
│   │   └── index.ts
│   └── string
│       └── index.ts
├── errors
│   └── index.ts
├── index.ts
└── utils
    └── index.ts

How to build the library to be used in production-ready projects?

:warning: not yet but surely later later :warning:

npm install thicker

How to use?

import * as Thicker from 'thicker'

// will return a random float between 0 and 100 
const randomPoint = Thicker.rand.randomFloat(0,100)

Features

TBA

NPM custom commands

  • build: Build the JavaScript files.
  • build:watch: Build the JavaScript files in watch mode.
  • test: Run jest in test mode.
  • test:watch: Run jest in interactive test mode.
  • docs: Generate the docs directory.
  • lint: Runs linter on the whole project.

Other/Optional considerations

TBA

License

License: MIT

Bastien GUIHARD