UNPKG

shapefile

Version:

An implementation of the shapefile (.shp) spatial data format.

7 lines (6 loc) 134 B
export default function(a, b) { var ab = new Uint8Array(a.length + b.length); ab.set(a, 0); ab.set(b, a.length); return ab; }