Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ var limit = require( './limit.js' );
* @returns {Function} function which maps values from one object to a new object having the same keys
*
* @example
* var join = require( 'path' ).join;
* var stat = require( 'fs' ).stat;
*
* function getStats( file, next ) {
Expand All @@ -72,8 +73,8 @@ var limit = require( './limit.js' );
*
* // Create a dictionary of file names:
* var files = {
* 'file1': './beep.js',
* 'file2': './boop.js'
* 'file1': join( __dirname, '..', 'README.md' ),
* 'file2': join( __dirname, '..', 'package.json' )
* };
*
* // Define a callback which handles errors:
Expand Down
5 changes: 3 additions & 2 deletions lib/node_modules/@stdlib/utils/async/map-values/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
*
* @example
* var stat = require( 'fs' ).stat;
* var join = require( 'path' ).join;
* var mapValuesAsync = require( '@stdlib/utils/async/map-values' );
*
* function getStats( file, next ) {
Expand All @@ -48,8 +49,8 @@
*
* // Create a dictionary of file names:
* var files = {
* 'file1': './beep.js',
* 'file2': './boop.js'
* 'file1': join( __dirname, '..', 'README.md' ),
* 'file2': join( __dirname, '..', 'package.json' )
* };
*
* var opts = {
Expand Down
5 changes: 3 additions & 2 deletions lib/node_modules/@stdlib/utils/async/map-values/lib/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ var factory = require( './factory.js' );
* @returns {void}
*
* @example
* var join = require( 'path' ).join;
* var stat = require( 'fs' ).stat;
*
* function getStats( file, next ) {
Expand All @@ -73,8 +74,8 @@ var factory = require( './factory.js' );
*
* // Create a dictionary of file names:
* var files = {
* 'file1': './beep.js',
* 'file2': './boop.js'
* 'file1': join( __dirname, '..', 'README.md' ),
* 'file2': join( __dirname, '..', 'package.json' )
* };
*
* var opts = {
Expand Down
Loading