UNPKG

267 BJavaScriptView Raw
1var staticLocation = require('./staticLocation')
2
3var parseUrl = require('./parseUrl')
4
5/**
6 * 获取地址栏信息
7 *
8 * @return Object
9 */
10function locat () {
11 return staticLocation ? parseUrl(staticLocation.href) : {}
12}
13
14module.exports = locat