Socket
Socket
Sign inDemoInstall

dataccom

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dataccom - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

3

.eslintrc.json

@@ -22,4 +22,5 @@ {

"arrow-parens": "off",
"implicit-arrow-linebreak": "off"
"implicit-arrow-linebreak": "off",
"func-names": "off"
}
}

@@ -5,3 +5,3 @@ 'use strict';

Fetcher.prototype.collect = (fn, ...args) => {
Fetcher.prototype.collect = function (fn, ...args) {
if (!this.functionsList) {

@@ -13,3 +13,3 @@ this.functionsList = [];

Fetcher.prototype.run = callback => {
Fetcher.prototype.run = function (callback) {
let result = {};

@@ -16,0 +16,0 @@ const assyncCall = async (item, save) => {

{
"name": "dataccom",
"version": "1.0.0",
"version": "1.0.1",
"description": "JavaScript library that allows you to build a request to multiple sources, combine responses and transform the result according to a scheme.",

@@ -5,0 +5,0 @@ "license": "MIT",

@@ -17,3 +17,3 @@ # Dataccom

The main idea is to allow the developer to compose a query to multiple sources,
retrieve the data and transform it according to the schema.
retrieve the data and transform it according to the scheme.

@@ -50,3 +50,4 @@ # How to Use

The result is:
{ name: 'John',
{
name: 'John',
age: 20,

@@ -53,0 +54,0 @@ university: 'Stanford University',

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc