/*
* @title path--
* @description declement last path number stupidly, tiny RW
* @include http://*
* @include https://*
* @contributor noromanba http://let.hatelabo.jp/noromanba/let/hLHUzOG4keoe (Fork of)
* @license MIT License http://opensource.org/licenses/MIT
* @javascript_url
*/
// like a BigDecimal/BigNum w/ zero-pad ver c.f.
// http://let.hatelabo.jp/noromanba/let/hJmflNfEuaJ9
// https://en.wikipedia.org/wiki/Arbitrary-precision_arithmetic
// TODO Big*, zero-pad
(() => {
// TBD lame, RegExp.exec w/ global
const paths = location.pathname.match(/\D*(\d+)\D*/g);
// string.match(/pattern/g).pop() -> NNNN/
// limit '0', avoid minus
paths.push(paths.pop().replace(/\d+/, (d) => Number(d) && Number(d) - 1));
location.pathname = paths.join('');
})();