0.2.1 • Published 4 years ago

@azdreamic/data-lib v0.2.1

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

Data Processor Library For TypeScript

Release Build

This library is purpose of do array / object operation like merge, clone, loop and some other processes. We always confuse to choose the best practices, performance and maintaining the common source from different developers.

This is very simple library written in typescript to resolve those conflicts. Since, it is written in typescript & npm combo will gave you extra feature like we can use it in typescript, javascript, angular, react and vuejs applications.

Installing Packages

Install the package from npm library.

npm install @azdreamic/data-lib --save

Features

  • Chains/pipes the process array fluently.
  • TypeScript Supported
  • Can use it in various platforms( TypeScript, JavaScript, Angular, React and VueJS )

Sample Snippet to Use

import { ArrayProcessor } from '@azdreamic/data-lib';

const arr = [{ key: 1, value: 1 }, { key: 2, value: 2 }, { key: 3, value: 3 }];

let result = ArrayProcessor<{key:number,value:number}>(arr).filterByKeyValue('key', 2);

result.get();

StackBlitz Sample

Documentation

License

MIT License

0.2.1

4 years ago

0.1.1

4 years ago

0.1.0

4 years ago

0.0.5-beta

4 years ago

0.0.2-beta

4 years ago

0.0.3-beta

4 years ago

0.0.2-alpha

4 years ago

0.0.1-alpha

4 years ago

0.0.1

4 years ago