This is a simple SVG path reversal library, with a terribly simple API.
Install with npm:
$> npm install svg-path-reverse
This is a universal library, you can load it through require.js, UMD, commonjs, browser, whatever, it doesn't care. You probably know how to use the technology you've chosen to use. Once you've loaded it in, however that might be, the API is as follows:
var utils = ... // load however you know to load libraries
var reverse = utils.reverse,
normalize = utils.normalize;
var path ="m0 0l10 0 0 10 -10 0z";
var normalized = normalize(path);
var reversed = reverse(path);
var reversed2 = reverse(reversed);
console.log("reversing is idempotent:", normalized === reversed2);
The reverse
function can take an optional second argument to reverse a specific subpath in a compound SVG path:
var utils = ... // load however you know to load libraries
var reverse = utils.reverse,
normalize = utils.normalize;
var path ="m0 0l10 0 0 10 -10 0z m10 10l10 0 0 10 -10 0z";
var normalized = normalize(path);
var reversed = reverse(path, 1);
var reversed2 = reverse(reversed, 1);
console.log("subpath reversing is also idempotent:", normalized === reversed2);
There's no fancy build system here: update the code, update test.js, then run your tests using node test.js
.
This code is in the public domain, except in jurisdictions that do not recognise the public domain, where this code is MIT licensed.
live demo (sort of): https://pomax.github.io/svg-path-reverse