- 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
200 B
JavaScript
7 lines
200 B
JavaScript
import _ from './underscore.js';
|
|
|
|
// Helper function to continue chaining intermediate results.
|
|
export default function chainResult(instance, obj) {
|
|
return instance._chain ? _(obj).chain() : obj;
|
|
}
|