Add fp/placeholder module.

This commit is contained in:
John-David Dalton
2016-04-02 10:57:29 -07:00
parent 2b58525816
commit 012bff97e0
4 changed files with 13 additions and 5 deletions

View File

@@ -1,6 +1,6 @@
var mapping = require('./_mapping'),
mutateMap = mapping.mutate,
fallbackHolder = {};
fallbackHolder = require('./placeholder');
/**
* The base implementation of `convert` which accepts a `util` object of methods

6
fp/placeholder.js Normal file
View File

@@ -0,0 +1,6 @@
/**
* The default argument placeholder value for methods.
*
* @type {Object}
*/
module.exports = {};