diff --git a/lib/fp/build-dist.js b/lib/fp/build-dist.js index 6c68c9923..e4764c6d7 100644 --- a/lib/fp/build-dist.js +++ b/lib/fp/build-dist.js @@ -42,6 +42,7 @@ var mappingConfig = { /** * Creates browser builds of the FP converter and mappings at the `target` path. * + * @private * @param {string} target The output directory path. */ function build() { diff --git a/lib/fp/build-doc.js b/lib/fp/build-doc.js index ff151ecd8..6edd802a2 100644 --- a/lib/fp/build-doc.js +++ b/lib/fp/build-doc.js @@ -23,6 +23,7 @@ var templateData = { * Converts arranged argument `indexes` into a named argument string * representation of their order. * + * @private * @param {number[]} indexes The arranged argument indexes. * @returns {string} Returns the named argument string. */ @@ -37,6 +38,7 @@ function toArgOrder(indexes) { /** * Converts `funcNames` into a chunked list string representation. * + * @private * @param {string[]} funcNames The function names. * @returns {string} Returns the function list string. */ @@ -68,6 +70,7 @@ function toFuncList(funcNames) { /** * Creates the FP-Guide wiki at the `target` path. * + * @private * @param {string} target The output file path. */ function build(target) { diff --git a/lib/fp/build-modules.js b/lib/fp/build-modules.js index 82b379c5e..9578499e7 100644 --- a/lib/fp/build-modules.js +++ b/lib/fp/build-modules.js @@ -46,6 +46,7 @@ var ignored = [ /** * Checks if `name` is a method alias. * + * @private * @param {string} name The name to check. * @returns {boolean} Returns `true` if `name` is a method alias, else `false`. */ @@ -56,6 +57,7 @@ function isAlias(name) { /** * Checks if `name` is a category name. * + * @private * @param {string} name The name to check. * @returns {boolean} Returns `true` if `name` is a category name, else `false`. */ @@ -66,6 +68,7 @@ function isCategory(name) { /** * Checks if `name` belongs to a method that's passed thru and not wrapped. * + * @private * @param {string} name The name to check. * @returns {boolean} Returns `true` if `name` is of a pass thru method, * else `false`. @@ -104,6 +107,7 @@ function getTemplate(moduleName) { /** * Creates FP modules at the `target` path. * + * @private * @param {string} target The output directory path. */ function build(target) { diff --git a/lib/main/build-dist.js b/lib/main/build-dist.js index b91f1474c..137b6915e 100644 --- a/lib/main/build-dist.js +++ b/lib/main/build-dist.js @@ -18,6 +18,7 @@ var baseLodash = path.join(basePath, filename), /** * Creates browser builds of Lodash at the `target` path. * + * @private * @param {string} target The output directory path. */ function build() { diff --git a/lib/main/build-modules.js b/lib/main/build-modules.js index 284b3ae23..e9e3f365b 100644 --- a/lib/main/build-modules.js +++ b/lib/main/build-modules.js @@ -21,6 +21,7 @@ var filePairs = [ /** * Creates supplementary Lodash modules at the `target` path. * + * @private * @param {string} target The output directory path. */ function build(target) {