helperGetLocatOrigin.js 239 B

1234567
  1. var staticLocation = require('./staticLocation')
  2. function helperGetLocatOrigin () {
  3. return staticLocation ? (staticLocation.origin || (staticLocation.protocol + '//' + staticLocation.host)) : ''
  4. }
  5. module.exports = helperGetLocatOrigin