This repository has been archived on 2022-03-12. You can view files and clone it, but cannot push or open issues or pull requests.

16 lines
325 B
JavaScript
Raw Permalink Normal View History

2021-04-02 02:24:13 +03:00
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;