- tent
- sleeping bag
- mattress
- table light
- small hammer
- chairs
- ear plugs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const orderedPropertyHash = require('css-property-sort-order-smacss'); | |
/** @type {string[]} List of CSS properties */ | |
const orderedPropertyList = []; | |
Object.values(orderedPropertyHash).forEach(listOrListOfLists => { | |
listOrListOfLists.forEach(propertyOrList => { | |
if (Array.isArray(propertyOrList)) { | |
orderedPropertyList.push(...propertyOrList); | |
} else { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function angularJsDepsAnalyzer(angular) { | |
'use strict'; | |
//console.time('total execution time'); | |
function naturalSort(a = '', b = '') { | |
return `${a}`.localeCompare(`${b}`, undefined, {numeric: true}); | |
} | |
const modules = [ |