locat.js 253 B

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