UNPKG

wendyhao-router-prefix

Version:

koa router prefix auto url

7 lines 253 B
'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;