UNPKG

reldens

Version:
18 lines (13 loc) 271 B
/** * * Reldens - ClassPathKeyFactory * */ class ClassPathKeyFactory { static fromLabel(label) { return label.toLowerCase().replace(/ /g, '-').replace('---', '-'); } } module.exports.ClassPathKeyFactory = ClassPathKeyFactory;