1234567891011121314 |
- define(['./_toPath', './_deepGet', './isUndefined'], function (_toPath, _deepGet, isUndefined) {
-
-
-
-
- function get(object, path, defaultValue) {
- var value = _deepGet(object, _toPath(path));
- return isUndefined(value) ? defaultValue : value;
- }
- return get;
- });
|