nickpegg.com/src/util.js
Nick Pegg 6109bb690d Unify slugify()
Provides a new util.js file with a unified `slugify()` function that also
lowercases the slug. Change all uses of `slugify()` to use this instead.
2017-10-11 22:26:39 -07:00

9 lines
177 B
JavaScript

import baseSlugify from 'slugify';
function slugify(s) {
// Slugify a string to our specs. Hooray consistency!
return baseSlugify(s).toLowerCase();
}
export { slugify };