Icard/angular-clarity-master(work.../node_modules/lodash-es/_baseSetData.js

18 lines
454 B
JavaScript
Raw Permalink Normal View History

2024-07-16 14:55:36 +00:00
import identity from './identity.js';
import metaMap from './_metaMap.js';
/**
* The base implementation of `setData` without support for hot loop shorting.
*
* @private
* @param {Function} func The function to associate metadata with.
* @param {*} data The metadata.
* @returns {Function} Returns `func`.
*/
var baseSetData = !metaMap ? identity : function(func, data) {
metaMap.set(func, data);
return func;
};
export default baseSetData;