21 lines
411 B
JavaScript
Raw Normal View History

import { startsWith } from 'lodash';
const openWithNewTab = path => {
const url = (() => {
if (startsWith(path, '/')) {
return `${strapi.backendURL}${path}`;
}
if (startsWith(path, 'https') || startsWith(path, 'http')) {
return path;
}
return `${strapi.backendURL}/${path}`;
})();
window.open(url, '_blank');
return window.focus();
};
export default openWithNewTab;