UNPKG

moving-average-arima

Version:

ARIMA, SARIMA, SARIMAX and AutoARIMA models for time series analysis and forecasting

10 lines (6 loc) 261 B
// Async compilation ('arima/async') import Module from '../wasm/native-async.js'; import bin from '../wrapper/native.bin.js'; import loadARIMA from './load.js'; const modulePromise = Module({ wasmBinary: bin }) export default modulePromise.then(loadARIMA);