MCPcopy
hub / github.com/lodash/lodash / browserConvert

Function browserConvert

fp/_convertBrowser.js:11–13  ·  view source on GitHub ↗

* 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)

Source from the content-addressed store, hash-verified

9 * @returns {Function} Returns the converted `lodash`.
10 */
11function browserConvert(lodash, options) {
12 return baseConvert(lodash, lodash, options);
13}
14
15if (typeof _ == 'function' && typeof _.runInContext == 'function') {
16 _ = browserConvert(_.runInContext());

Callers 1

_convertBrowser.jsFile · 0.85

Calls 1

baseConvertFunction · 0.85

Tested by

no test coverage detected