1
0
mirror of https://codeberg.org/teddit/teddit synced 2025-02-09 08:38:51 +01:00
2020-11-17 21:44:32 +01:00

16 lines
325 B
JavaScript

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;