var memoizeCapped = ;
/** Used to match property names within property paths. */
var rePropName = /[^.[\]]+|\[\]|/g;
/** Used to match backslashes in property paths. */
var reEscapeChar = /\\?/g;
/**
* Converts `string` to a property path array.
*
* @private
* @param {string} string The string to convert.
* @returns {Array} Returns the property path array.
*/
var stringToPath = ;
module.exports = stringToPath;