ntt-flow
Version:
The sequence of initialization, modification, aggregation, or other processes through which a data entity passes from instantiation to persistence.
17 lines • 539 B
JavaScript
define(["require", "exports"], function (require, exports) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var DECREMENT = 'DECREMENT';
var INCREMENT = 'INCREMENT';
exports.vectorActions = {
DECREMENT: DECREMENT,
INCREMENT: INCREMENT
};
var reduceVector = function (vector, action) {
switch (action.type) {
default: return vector;
}
};
exports.default = reduceVector;
});
//# sourceMappingURL=reduceVector.js.map