/override.ps1

Curated Collection of Cool Functions. For Enhanced Unit Testing & NPM Registry @ <https://registry.npmjs.org>

Primary LanguageTypeScriptMIT LicenseMIT

override.ps1 - Typescript Based Minimal JS Functions

How to Install and Use ?

# For package.json file
$ npm init -y
# Install the module
$ npm install override.ps1@latest --save-dev

Usage in TypeScript

import { Permute, trace, getValue } from 'override.ps1';
import { Promise } from '@types/promises';
import { Swap, appendDataToProperty } from 'override.ps1';

// stdout to console.
trace("This is a traced message.");

// If you prefer Generic Programming.
const A = [2, 5, 6];
const R = Permute<number>(A);

trace("All Permutations: ");
R.forEach((permutation) => {
    console.log(permutation);
});

trace(" == End of Script == ");

Usage in JavaScript

const over = require('override.ps1');
over.info("This is a log message");
var id = over.generatePlayerId();
over.info(id);

// Creates Key Value Pair and Prints them
over.CreateKeyValuePair("userid", 10002);

TypeScript vs. JavaScript

typescript javascript

Who will be the king in future ?