Codeminer42/cm42-central

View on GitHub
app/assets/javascripts/components/story/StoryUrl.js

Summary

Maintainability
A
0 mins
Test Coverage
export const storyUrl = story => {
  const location = window.location.href;
  const hashIndex = location.indexOf('#');
  const endIndex = hashIndex > 0 ? hashIndex : location.length;
  return `${location.substring(0, endIndex)}#story-${story.id.toString()}`;
};