* 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 t
(lodash, options)
| 9 | * @returns {Function} Returns the converted `lodash`. |
| 10 | */ |
| 11 | function browserConvert(lodash, options) { |
| 12 | return baseConvert(lodash, lodash, options); |
| 13 | } |
| 14 | |
| 15 | if (typeof _ == 'function' && typeof _.runInContext == 'function') { |
| 16 | _ = browserConvert(_.runInContext()); |
no test coverage detected