Enable convert to work when given lodash and options.

This commit is contained in:
John-David Dalton
2016-02-09 21:56:49 -08:00
parent c91196d240
commit e9edc06aaf
3 changed files with 40 additions and 35 deletions

View File

@@ -8,7 +8,7 @@ var baseConvert = require('./_baseConvert');
* @returns {Function} Returns the converted `lodash`.
*/
function browserConvert(lodash, options) {
return baseConvert(lodash, lodash, undefined, options);
return baseConvert(lodash, lodash, options);
}
module.exports = browserConvert;