UNPKG

blogware

Version:

A static site generator for hosting full-featured Ghost blog on GitHub Pages.

14 lines (10 loc) 227 B
function getSlug(type, location) { var slug; var pattern = new RegExp(type + '/([^/]+)/?'); var matches = location.match(pattern); if (matches) { slug = matches[1]; } return slug; } module.exports = getSlug;