Removed modules/contrib/media module to allow update to the core media module
[yaffs-website] / node_modules / uncss / 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  * @returns {Function} Returns the converted `lodash`.
8  */
9 function browserConvert(lodash) {
10   return baseConvert(lodash, lodash);
11 }
12
13 module.exports = browserConvert;