Permalink
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
codeql-action/node_modules/lodash/_stringToPath.js
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

27 lines (23 sloc)
840 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var memoizeCapped = require('./_memoizeCapped'); | |
/** Used to match property names within property paths. */ | |
var rePropName = /[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/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 = memoizeCapped(function(string) { | |
var result = []; | |
if (string.charCodeAt(0) === 46 /* . */) { | |
result.push(''); | |
} | |
string.replace(rePropName, function(match, number, quote, subString) { | |
result.push(quote ? subString.replace(reEscapeChar, '$1') : (number || match)); | |
}); | |
return result; | |
}); | |
module.exports = stringToPath; |