UNPKG

323 BJavaScriptView Raw
1import metaMap from './_metaMap.js';
2import noop from './noop.js';
3
4/**
5 * Gets metadata for `func`.
6 *
7 * @private
8 * @param {Function} func The function to query.
9 * @returns {*} Returns the metadata for `func`.
10 */
11var getData = !metaMap ? noop : function(func) {
12 return metaMap.get(func);
13};
14
15export default getData;