Add jsdoc comments to fp/_baseConvert. [ci skip]

This commit is contained in:
John-David Dalton
2016-04-03 21:37:41 -07:00
parent 7165ef6f5e
commit a71ac53fa7
3 changed files with 226 additions and 118 deletions

View File

@@ -1,9 +1,10 @@
var baseConvert = require('./_baseConvert');
/**
* Converts `lodash` to an immutable auto-curried iteratee-first data-last version.
* Converts `lodash` to an immutable auto-curried iteratee-first data-last
* version with conversion `options` applied.
*
* @param {Function} lodash The lodash function.
* @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`.
*/