Add private tag to unexposed functions. [ci skip]

This commit is contained in:
John-David Dalton
2016-08-01 17:13:39 -07:00
parent 6dd8fb12ad
commit d216106b88
5 changed files with 10 additions and 0 deletions

View File

@@ -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() {

View File

@@ -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) {

View File

@@ -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) {

View File

@@ -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() {

View File

@@ -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) {