Package Exports
- array-comparator
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (array-comparator) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
The best module ever.
Install
$ npm install array-comparator --save##Description Comparator for use with the chrysalis framework: [https://github.com/APPrise-Mobile/chrysalis] This is the module used to determine what documents need to be created, based on a comparative array of documents the endpoint database already contains, and an array of comparative keys to compare. These keys are usually unique identifiers for each document, the framework will then check to see if the value of the compareKey exists on any of the documents from the compare array. If it doesn't exists, then the document is marked for creation.
Support for update and deletion coming soon.
Usage
var arrayComparator = require('array-comparator');
var chrysalis = require('chrysalis');
var options = {
comparativeKeys: ['integrationId'],
comparativeArray: mongoData
};
var comparator = arrayComparator(options);
var chrysis = chrysalis();
chrysis.setComparator(comparator);License
MIT © APPrise-Mobile