Skip to content

A dependency-less collection of functions and utilities guaranteed to have the least performance impact.

License

Notifications You must be signed in to change notification settings

PCOffline/optimised-js

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

optimised-js

A dependency-less modern collection of functions and utilities guaranteed to have the least performance impact. This library is written in TypeScript, using the latest ECMAScripts features, transpiled to ES6 (ES2015).

Usage

import { Arrays, Strings } from 'optimised';

const array = [1, 5, 1, 7, 3, 2, 5];
const stringArray = ['a', 'bb', 'ca', 'er', 'ff', 'aa', 'b'];

console.log(Arrays.max(array)); // 7
console.log(Arrays.max(stringArray, false, true)); // ff

console.log(Strings.max('a', 'bb', 'ca', 'er', 'ff', 'aa', 'b')); // ff

About

A dependency-less collection of functions and utilities guaranteed to have the least performance impact.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published