A package, with tools designed to work with strings, numbers, and mathematics.
🚧 DEVELOPMENT!
Development is in full swing, wait for the results.
• From NPM:
npm install whichx-utils@latest
• From YARN:
yarn add whichx-utils@latest
For export and import to work with usages, you need to write type="module"
in package.json
import { port } from "whichx-utils";
const body = port.default({
Types: [
{
port: 80
}
],
config: {}
});
console.log(body) // { type: "HTTP" }
import { MessageFrom } from "whichx-utils";
const body = MessageFrom("Hello");
console.log(body) // Hello.
import { getLast } from "whichx-utils";
const body = ["hello", "bye"].getLast();
console.log(body) // bye
import { whileUtils } from "whichx-utils";
const body = whileUtils("facebook.com"); // url from google.com
console.log(body) // ...
This information is distributed for informational purposes. We are not trying to offend anyone. For more information go to the file LICENSE.
😍 and more soon...