Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 669 Bytes

README.md

File metadata and controls

19 lines (12 loc) · 669 Bytes

Solves for the new path of srcFilePath given the changes to the directory structure described by directoryChanges. directoryChanges is either a hash that maps the absolute paths of old directories to those of new directories or a function that does the same. srcFilePath is an absolute path.

If no changes are described in directoryChanges that affect the path of srcFilePath, then srcFilePath is returned.

pathMapper = require( 'path-mapper' );

dstFilePath = pathMapper( srcFilePath, directoryChanges );

// or

var url = pathMapper( srcFilePath, function( srcDir ) {
	return '/' + packagePathsToIds[ srcDir ];
} );

License

MIT