Rename fp mapping rename to remap.

This commit is contained in:
John-David Dalton
2016-02-14 23:47:03 -08:00
parent aae02af265
commit c163659713
5 changed files with 6 additions and 6 deletions

View File

@@ -254,7 +254,7 @@ function baseConvert(util, name, func, options) {
var pairs = [];
each(mapping.caps, function(cap) {
each(mapping.aryMethod[cap], function(key) {
var func = _[mapping.rename[key] || key];
var func = _[mapping.remap[key] || key];
if (func) {
pairs.push([key, wrap(key, func)]);
}

View File

@@ -203,7 +203,7 @@ exports.realToAlias = (function() {
}());
/** Used to map method names to other names. */
exports.rename = {
exports.remap = {
'curryN': 'curry',
'curryRightN': 'curryRight',
'getOr': 'get',