UNPKG

@snipsonian/core

Version:

Core/base reusable javascript code snippets

9 lines (8 loc) 235 B
import getPartBetween from '../string/getPartBetween'; export default function getUrlPartBetween({ url, firstPart, secondPart = '/', }) { return getPartBetween({ input: url, firstPart, secondPart, }); }