- Add serve.py to resolve clean Quartz URLs to .html files - Regenerate Quartz site with correct baseUrl http://100.118.5.51:9120 - 196 HTML files emitted; all internal links now resolve
7 lines
155 B
JavaScript
7 lines
155 B
JavaScript
import filter from './filter.js';
|
|
|
|
// Trim out all falsy values from an array.
|
|
export default function compact(array) {
|
|
return filter(array, Boolean);
|
|
}
|