Home Manual Reference Source

Usage

:warning: The code needs a ES2015+ polyfill to run (regeneratorRuntime), for instance @babel/polyfill.

First, require the polyfill at the entry point of your application

require( '@babel/polyfill' ) ;
// or
import '@babel/polyfill' ;

Then, import the library where needed

const fft_integer = require( '@aureooms/js-fft-integer' ) ;
// or
import * as fft_integer from '@aureooms/js-fft-integer' ;