1 var isObject = require('../lang/isObject');
4 * Adds `value` to the cache.
9 * @param {*} value The value to cache.
11 function cachePush(value) {
13 if (typeof value == 'string' || isObject(value)) {
16 data.hash[value] = true;
20 module.exports = cachePush;