mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-10 10:57:49 +00:00
Cleanup common lib docs. [ci skip]
This commit is contained in:
@@ -23,7 +23,7 @@ function copy(srcPath, destPath) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates an object of compiled template and base name pairs that match `pattern`.
|
* Creates an object of base name and compiled template pairs that match `pattern`.
|
||||||
*
|
*
|
||||||
* @memberOf file
|
* @memberOf file
|
||||||
* @param {string} pattern The glob pattern to be match.
|
* @param {string} pattern The glob pattern to be match.
|
||||||
|
|||||||
@@ -13,8 +13,8 @@ var uglifyOptions = require('./uglify.options');
|
|||||||
* invokes `callback` upon completion. The callback is invoked with one argument:
|
* invokes `callback` upon completion. The callback is invoked with one argument:
|
||||||
* (error).
|
* (error).
|
||||||
*
|
*
|
||||||
* If unspecified, `destPath` is `srcPath` with an extension of `.min.js`. For
|
* If unspecified, `destPath` is `srcPath` with an extension of `.min.js`.
|
||||||
* example, a `srcPath` of `path/to/foo.js` would have a `destPath` of `path/to/foo.min.js`.
|
* (e.g. the `destPath` of `path/to/foo.js` would be `path/to/foo.min.js`)
|
||||||
*
|
*
|
||||||
* @param {string} srcPath The path of the file to minify.
|
* @param {string} srcPath The path of the file to minify.
|
||||||
* @param {string} [destPath] The path to write the file to.
|
* @param {string} [destPath] The path to write the file to.
|
||||||
|
|||||||
@@ -6,10 +6,10 @@ var _ = require('lodash');
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates a hash object. If a `properties` object is provided, its own
|
* Creates a hash object. If a `properties` object is provided, its own
|
||||||
* enumerable properties are assigned to the created object.
|
* enumerable properties are assigned to the created hash.
|
||||||
*
|
*
|
||||||
* @memberOf util
|
* @memberOf util
|
||||||
* @param {Object} [properties] The properties to assign to the object.
|
* @param {Object} [properties] The properties to assign to the hash.
|
||||||
* @returns {Object} Returns the new hash object.
|
* @returns {Object} Returns the new hash object.
|
||||||
*/
|
*/
|
||||||
function Hash(properties) {
|
function Hash(properties) {
|
||||||
|
|||||||
Reference in New Issue
Block a user