UNPKG

254 BJavaScriptView Raw
1/**
2 *
3 */
4
5module.exports = (nav) => {
6 const res = {};
7
8 nav.forEach(item => {
9 const str = '{';
10 if (/^https?.*/.test(item.uri)) {
11 str += `http: `;
12 } else {
13
14 }
15
16 str += '}';
17 });
18}
\No newline at end of file