1.2.3 • Published 4 years ago

object-toolbox v1.2.3

Weekly downloads
2
License
MIT
Repository
github
Last release
4 years ago

object-toolbox

Build State Coverage License Version

Simple js plain object toolbox. Provides some enhance methods for js object.

Api Document

https://glenzli.github.io/object-toolbox/

Example

import { operateLeaf, Fit } from 'object-toolbox';

const point1 = { x: 1, y: 2 };
const point2 = { x: 2, y: -2 };
const point3 = operateLeaf((x: number, y: number) => x + y, point1, point2);
// point3 = { x: 3, y: 0 }

const fit = new Fit();
const point4 = fit.fit(0.5, point1, point2);
// point4 = { x: 1.5, y: 0 }
1.2.3

4 years ago

1.2.2

4 years ago

1.2.1

4 years ago

1.2.0

4 years ago

1.1.2

4 years ago

1.1.1

4 years ago

1.1.0

4 years ago

1.0.0

4 years ago

0.1.0

4 years ago