Bump to v4.17.1.

This commit is contained in:
John-David Dalton
2016-11-14 20:54:18 -08:00
parent 7402021739
commit 76b7758fc7
18 changed files with 94 additions and 79 deletions

View File

@@ -1,4 +1,4 @@
define(['./_memoizeCapped', './toString'], function(memoizeCapped, toString) {
define(['./_memoizeCapped'], function(memoizeCapped) {
/** Used to match property names within property paths. */
var reLeadingDot = /^\./,
@@ -15,8 +15,6 @@ define(['./_memoizeCapped', './toString'], function(memoizeCapped, toString) {
* @returns {Array} Returns the property path array.
*/
var stringToPath = memoizeCapped(function(string) {
string = toString(string);
var result = [];
if (reLeadingDot.test(string)) {
result.push('');