File "utils.js"
Full Path: /home/tekvhqgl/public_html/dev2024_old_skip/wp-content/plugins/presto-player/src/router/utils.js
File size: 232 bytes
MIME-type: text/x-java
Charset: utf-8
import qs from "querystringify";
export function locationToRoute(location) {
// location comes from the history package
return {
path: location.pathname,
hash: location.hash,
query: qs.parse(location.search),
};
}