Packages
Library for accessibility snapshot testing in Phoenix applications using axe-core and Playwright.
Current section
Files
Jump to
Current section
Files
assets/node_modules/underscore/modules/propertyOf.js
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);
};
}