mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-04 17:07:49 +00:00
Bump to v3.0.0.
This commit is contained in:
17
internal/baseSetData.js
Normal file
17
internal/baseSetData.js
Normal file
@@ -0,0 +1,17 @@
|
||||
define(['../utility/identity', './metaMap'], function(identity, metaMap) {
|
||||
|
||||
/**
|
||||
* The base implementation of `setData` without support for hot loop detection.
|
||||
*
|
||||
* @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;
|
||||
};
|
||||
|
||||
return baseSetData;
|
||||
});
|
||||
Reference in New Issue
Block a user