1.0.0 • Published 2 years ago

standard-library-extensions v1.0.0

Weekly downloads
45
License
Apache-2.0
Repository
github
Last release
2 years ago

Standard Library Extensions

JavaScript standard library extensions for building complex and scalable web applications.

Design choices

  • Align with conventions and interfaces of JavaScript standard built-in objects. e.g. TreeMap extends the built-in Map interface.
  • Concise code. Some methods use recursion for more compact code. e.g. most methods in TreeMap and the find method in UnionFind. These methods' time complexity is no worse than O(n) so it's not likely to reach the call stack limit.
  • No external dependencies

Install

Copy and paste code. Or use a package manager:

npm install standard-library-extensions
import { binarySearch } from "standard-library-extensions";

Release

npm publish

It automatically publishes the package when a new release is created.

1.0.0

2 years ago

0.3.1

3 years ago

0.2.1

3 years ago

0.1.5

3 years ago

0.1.4

3 years ago

0.1.2

3 years ago

0.1.3

3 years ago

0.1.1

3 years ago

0.1.0

3 years ago