- 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
11 lines
267 B
JavaScript
11 lines
267 B
JavaScript
import noop from './noop.js';
|
|
import get from './get.js';
|
|
|
|
// Generates a function for a given object that returns a given property.
|
|
export default function propertyOf(obj) {
|
|
if (obj == null) return noop;
|
|
return function(path) {
|
|
return get(obj, path);
|
|
};
|
|
}
|