trailpack-proxy-cart
Version:
eCommerce - Trailpack for Proxy Engine
17 lines (15 loc) • 348 B
JavaScript
// const _ = require('lodash')
const Generic = require('trailpack-proxy-generics').Generic
module.exports = class FakeGeolocationProvider extends Generic{
constructor(options) {
super()
this.options = options
}
locate(data) {
return Promise.resolve({
latitude: 0.000000,
longitude: 0.000000
})
}
}