Bump to v4.10.0.

This commit is contained in:
John-David Dalton
2016-04-10 23:01:56 -07:00
parent 7d39d58e43
commit be0bf2681b
61 changed files with 445 additions and 420 deletions

View File

@@ -30,17 +30,18 @@ exports.aliasToReal = {
'init': 'initial',
'invertObj': 'invert',
'juxt': 'over',
'mapObj': 'mapValues',
'omitAll': 'omit',
'nAry': 'ary',
'path': 'get',
'pathEq': 'matchesProperty',
'pathOr': 'getOr',
'paths': 'at',
'pickAll': 'pick',
'pipe': 'flow',
'prop': 'get',
'propOf': 'propertyOf',
'propEq': 'matchesProperty',
'propOr': 'getOr',
'props': 'at',
'unapply': 'rest',
'unnest': 'flatten',
'useWith': 'overArgs',

View File

@@ -1 +0,0 @@
module.exports = require('./mapValues');

1
fp/paths.js Normal file
View File

@@ -0,0 +1 @@
module.exports = require('./at');

1
fp/propEq.js Normal file
View File

@@ -0,0 +1 @@
module.exports = require('./matchesProperty');

View File

@@ -1 +0,0 @@
module.exports = require('./propertyOf');

1
fp/props.js Normal file
View File

@@ -0,0 +1 @@
module.exports = require('./at');