UNPKG

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
define(["require", "exports"], function (require, exports) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var DECREMENT = 'DECREMENT'; var INCREMENT = 'INCREMENT'; exports.stringActions = { DECREMENT: DECREMENT, INCREMENT: INCREMENT }; var reduceString = function (string, action) { switch (action.type) { default: return string; } }; exports.default = reduceString; }); //# sourceMappingURL=reduceString.js.map