Newer
Older
ez-indexation / app / node_modules / lodash / _getData.js
@kieffer kieffer on 7 Mar 2017 325 bytes v0.0.0
var metaMap = require('./_metaMap'),
    noop = require('./noop');

/**
 * Gets metadata for `func`.
 *
 * @private
 * @param {Function} func The function to query.
 * @returns {*} Returns the metadata for `func`.
 */
var getData = !metaMap ? noop : function(func) {
  return metaMap.get(func);
};

module.exports = getData;