Skip to content

Commit

Permalink
Be possible pass opts
Browse files Browse the repository at this point in the history
  • Loading branch information
Kikobeats committed Apr 29, 2018
1 parent 7a16eba commit d675cc9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/metascraper-helpers/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ const getAbsoluteUrl = (baseUrl, relativePath = '') => (
: relativePath
)

const getUrl = (baseUrl, relativePath) => (
normalizeUrl(getAbsoluteUrl(baseUrl, relativePath))
const getUrl = (baseUrl, relativePath, opts) => (
normalizeUrl(getAbsoluteUrl(baseUrl, relativePath), opts)
)

const removeByPrefix = flow([
Expand Down

0 comments on commit d675cc9

Please sign in to comment.