├── .github └── workflows │ └── node.yml ├── .gitignore ├── LICENSE ├── README.md ├── eslint.config.js ├── index.js ├── package.json └── test ├── debug.js ├── fixtures ├── diff1.json ├── osm1.json └── tiger1.json └── test-full.js /.github/workflows/node.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/linematch/HEAD/.github/workflows/node.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | node_modules 3 | .DS_Store 4 | .nyc_output 5 | coverage 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/linematch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/linematch/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/linematch/HEAD/eslint.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/linematch/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/linematch/HEAD/package.json -------------------------------------------------------------------------------- /test/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/linematch/HEAD/test/debug.js -------------------------------------------------------------------------------- /test/fixtures/diff1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/linematch/HEAD/test/fixtures/diff1.json -------------------------------------------------------------------------------- /test/fixtures/osm1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/linematch/HEAD/test/fixtures/osm1.json -------------------------------------------------------------------------------- /test/fixtures/tiger1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/linematch/HEAD/test/fixtures/tiger1.json -------------------------------------------------------------------------------- /test/test-full.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mapbox/linematch/HEAD/test/test-full.js --------------------------------------------------------------------------------