UNPKG
wendyhao-router-prefix
Version:
latest (1.0.0)
1.0.0
koa router prefix auto url
wendyhao-router-prefix
/
index.js
7 lines
•
253 B
JavaScript
View Raw
1
2
3
4
5
6
7
'use strict'
;
function
prefix
(
routename,currpath
){ routename=
/^\.\//
.
test
(routename)?routename.
substr
(
2
):routename;
let
k=currpath.
lastIndexOf
(routename)+routename.
length
;
return
currpath.
substr
(k).
replace
(
/\\/g
,
'/'
); }
module
.
exports
=prefix;