mirror of
https://github.com/krisk/Fuse.git
synced 2026-01-18 16:16:25 +00:00
383 B
383 B
Global config
You can access all options above via Fuse.config. This is useful if you want to override default options for all Fuse instances.
Example:
const options = {
getFn: (obj, path) => {
// Use the default `get` function
const value = Fuse.config.getFn(obj, path)
// ... do something with `value`
return value
}
}