-
downsample
now supports tree shaking and partial imports:// Instead of importing from the bundle import { LTD } from 'downsample'; // You can now import only the bits you want import { LTD } from 'downsample/methods/LTD';
ASAP
andSMA
methods
- Added missing
SMA
export - Added downampling function factories (
createASAP
,createLTD
etc.) - Fixed a typo in API docs
- Added support for
TypedArray
types (Int8Array
,Int16Array
,Int32Array
,Uint8Array
,Uint8ClampedArray
,Uint16Array
,Uint32Array
,Float32Array
,Float64Array
)