UNPKG

data-forge

Version:

JavaScript data transformation and analysis toolkit inspired by Pandas and LINQ.

19 lines 828 B
"use strict"; // // Iterates an underlying iterable in the 'windows'. // Object.defineProperty(exports, "__esModule", { value: true }); var dataframe_window_iterator_1 = require("../iterators/dataframe-window-iterator"); var DataFrameWindowIterable = /** @class */ (function () { function DataFrameWindowIterable(columnNames, iterable, period) { this.columnNames = columnNames; this.iterable = iterable; this.period = period; } DataFrameWindowIterable.prototype[Symbol.iterator] = function () { return new dataframe_window_iterator_1.DataFrameWindowIterator(this.columnNames, this.iterable, this.period); }; return DataFrameWindowIterable; }()); exports.DataFrameWindowIterable = DataFrameWindowIterable; //# sourceMappingURL=dataframe-window-iterable.js.map