mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-01 07:47:49 +00:00
Bump to v4.1.0.
This commit is contained in:
16
_baseToPath.js
Normal file
16
_baseToPath.js
Normal file
@@ -0,0 +1,16 @@
|
||||
var isArray = require('./isArray'),
|
||||
stringToPath = require('./_stringToPath');
|
||||
|
||||
/**
|
||||
* The base implementation of `_.toPath` which only converts `value` to a
|
||||
* path if it's not one.
|
||||
*
|
||||
* @private
|
||||
* @param {*} value The value to process.
|
||||
* @returns {Array} Returns the property path array.
|
||||
*/
|
||||
function baseToPath(value) {
|
||||
return isArray(value) ? value : stringToPath(value);
|
||||
}
|
||||
|
||||
module.exports = baseToPath;
|
||||
Reference in New Issue
Block a user