UNPKG

liftie

Version:

Clean, simple, easy to read, fast ski resort lift status

10 lines (8 loc) 186 B
module.exports = canonical; // converts 'Names Like This' into 'names-like-this' function canonical(str) { return str .split(' ') .map(s => s.toLowerCase()) .join('-'); }