mirror of
https://github.com/strapi/strapi.git
synced 2025-09-28 18:01:26 +00:00
6 lines
194 B
JavaScript
6 lines
194 B
JavaScript
/* eslint-disable prefer-template */
|
|
export default (location, n) => {
|
|
const half = location.split(n + '=')[1];
|
|
return half !== undefined ? decodeURIComponent(half.split('&')[0]) : null;
|
|
};
|