8 lines
247 B
Java
8 lines
247 B
Java
var staticLocation = require('../static/staticLocation')
|
|
|
|
function helperGetLocatOrigin () {
|
|
return staticLocation ? (staticLocation.origin || (staticLocation.protocol + '//' + staticLocation.host)) : ''
|
|
}
|
|
|
|
module.exports = helperGetLocatOrigin
|