UNPKG

atlas-guide

Version:

Atlas is living style-guides & pattern library static site generator with extensive CSS monitoring and components info that could be used virtually with any scss/css project

14 lines (10 loc) 286 B
'use strict'; const _uniq = require('lodash.uniq'); function sortFontFamilies(values) { let normalizedNames = []; values.forEach(item => { normalizedNames.push(item.replace(/, /g, ',')); }); return _uniq(normalizedNames); } module.exports = sortFontFamilies;