beesjsnpm
v1.1.0
Published
Bee mathematics and booleans
Downloads
21
Readme
BEESJSNPM
How to run:
- REPL.IT
const bees = require("beesjsnpm");
Then press Run. It'll automatically install and run!
- DEFAULT NPM - LINUX
cd <projectfolder>
npm install beesjsnpm
const bees = require("beesjsnpm");
Usage and commands
//Math
// Add
pollinate(num1, num2)
// Subtract
sting(num1, num2)
// Multiply
cell(num1, num2)
// Divide
divide(num1, num2)
// Modulo
increase(num1, num2)
// Squares num1 by 2
supernum(num1)
// Halve num1
comb(num1)
//String
// Concatenate to string1
cluster(string1, string2)
// Replace findText with replaceText in mainText
reproduce(findText, replaceText, mainText)
//Booleans
//If bool1 is bool2 (loose), return true
cellfilled(bool1, bool2)
//If bool1 is NOT bool2 (loose), return true
brood(bool1, bool2)