- 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
159 B
JavaScript
7 lines
159 B
JavaScript
// Predicate-generating function. Often useful outside of Underscore.
|
|
export default function constant(value) {
|
|
return function() {
|
|
return value;
|
|
};
|
|
}
|