https://github.com/agenthackeryt/bastools
A Set of basic tools to help u code
https://github.com/agenthackeryt/bastools
Last synced: 12 months ago
JSON representation
A Set of basic tools to help u code
- Host: GitHub
- URL: https://github.com/agenthackeryt/bastools
- Owner: AgentHackerYT
- Created: 2021-11-30T09:24:31.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-02-21T12:52:23.000Z (over 4 years ago)
- Last Synced: 2025-06-27T22:03:06.594Z (12 months ago)
- Language: JavaScript
- Homepage:
- Size: 11.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Bas Tools

- Simple Tools for Better Coding Experience
- Now There Are 18 Functions
# Functions
### Random
```js
const { Random } = require('bastools')
const array = ["hello" , "hi"]
const randomised = Random(array)
console.log(randomised)
// Returns a Random String From The Array
```
### RandomIDGen Deprecated
```js
const { RandomIDGen } = require('bastools')
const final = RandomIDGen(20)
console.log(final)
// Returns A String full of Random Characters
```
### DupCheck
```js
const { DupCheck } = require('bastools')
const final = Dupcheck("hello" "hello")
console.log(final)
// Returns A Boolean
```
### StringToNumber
```js
const { StringToNumber } = require('bastools')
const final = StringToNumber("123")
console.log(final)
// Returns Number
```
### RemoveDup
```js
const { RemoveDup } = require('bastools')
const array = ["BasTools" , "TestTools" , "BasTools"]
const final = RemoveDup(array)
console.log(final)
// Removes Duplicates from an Array and Returns a New Set
```
- At This Point I Am Very lazy to explain all the functions so just try to get it by the function name pls
### firstLetterToUppercase
### firstLetterOfEveryWordToUppercase
### lastLetterToUppercase
### lastLetterOfEveryWordToUppercase
### ArrayToString
### StringToArray
### RandomString
### getFutureTime
### wait
### allLettersUppercaseExecptFirstLetterForEveryWord
### allLettersUppercaseExecptFirstLetter
### encryptBase64
### decryptBase64