Skip to content
This repository has been archived by the owner on Oct 21, 2022. It is now read-only.

Commit

Permalink
add each
Browse files Browse the repository at this point in the history
  • Loading branch information
taylordowns2000 committed Dec 9, 2016
1 parent 01fa2ad commit 7147803
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
8 changes: 7 additions & 1 deletion lib/Adaptor.js
Expand Up @@ -3,7 +3,7 @@
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.lastReferenceValue = exports.dataValue = exports.dataPath = exports.merge = exports.alterState = exports.sourceValue = exports.fields = exports.field = undefined;
exports.lastReferenceValue = exports.dataValue = exports.dataPath = exports.merge = exports.each = exports.alterState = exports.sourceValue = exports.fields = exports.field = undefined;

var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol ? "symbol" : typeof obj; };

Expand Down Expand Up @@ -42,6 +42,12 @@ Object.defineProperty(exports, 'alterState', {
return _languageCommon.alterState;
}
});
Object.defineProperty(exports, 'each', {
enumerable: true,
get: function get() {
return _languageCommon.each;
}
});
Object.defineProperty(exports, 'merge', {
enumerable: true,
get: function get() {
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "language-http",
"version": "0.3.2",
"version": "0.3.3",
"description": "An HTTP Language Pack for OpenFn",
"main": "lib/index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/Adaptor.js
Expand Up @@ -268,6 +268,6 @@ export function get(path, {query, callback}) {
}

export {
field, fields, sourceValue, alterState,
field, fields, sourceValue, alterState, each,
merge, dataPath, dataValue, lastReferenceValue
} from 'language-common';

0 comments on commit 7147803

Please sign in to comment.