0e69e66cda6c940a0cb5dc730a516f84b2eb7293
[yaffs-website] / node_modules / grunt-legacy-util / node_modules / lodash / fp / _convertBrowser.js
1 var baseConvert = require('./_baseConvert');
2
3 /**
4  * Converts `lodash` to an immutable auto-curried iteratee-first data-last version.
5  *
6  * @param {Function} lodash The lodash function.
7  * @param {Object} [options] The options object. See `baseConvert` for more details.
8  * @returns {Function} Returns the converted `lodash`.
9  */
10 function browserConvert(lodash, options) {
11   return baseConvert(lodash, lodash, undefined, options);
12 }
13
14 module.exports = browserConvert;