Version 1
[yaffs-website] / node_modules / grunt-uncss / node_modules / lodash / _basePropertyDeep.js
diff --git a/node_modules/grunt-uncss/node_modules/lodash/_basePropertyDeep.js b/node_modules/grunt-uncss/node_modules/lodash/_basePropertyDeep.js
new file mode 100644 (file)
index 0000000..1e5aae5
--- /dev/null
@@ -0,0 +1,16 @@
+var baseGet = require('./_baseGet');
+
+/**
+ * A specialized version of `baseProperty` which supports deep paths.
+ *
+ * @private
+ * @param {Array|string} path The path of the property to get.
+ * @returns {Function} Returns the new accessor function.
+ */
+function basePropertyDeep(path) {
+  return function(object) {
+    return baseGet(object, path);
+  };
+}
+
+module.exports = basePropertyDeep;