Urara-Blog/node_modules/.pnpm-store/v3/files/f9/600051abdae076cf91165baeebf13d0d0a1b34abbf1f074a0b6af3cd7da5778e916ebb8bf4b5c267eb85df5f0418aa8326e642b0cadd75ba90f7844376ee64
2022-08-14 01:14:53 +08:00

18 lines
615 B
Text

var baseConvert = require('./_baseConvert');
/**
* Converts `lodash` to an immutable auto-curried iteratee-first data-last
* version with conversion `options` applied.
*
* @param {Function} lodash The lodash function to convert.
* @param {Object} [options] The options object. See `baseConvert` for more details.
* @returns {Function} Returns the converted `lodash`.
*/
function browserConvert(lodash, options) {
return baseConvert(lodash, lodash, options);
}
if (typeof _ == 'function' && typeof _.runInContext == 'function') {
_ = browserConvert(_.runInContext());
}
module.exports = browserConvert;