mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-31 17:38:48 +00:00
react app
This commit is contained in:
17
react-app/node_modules/lodash/internal/baseSetData.js
generated
vendored
Normal file
17
react-app/node_modules/lodash/internal/baseSetData.js
generated
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
var identity = require('../utility/identity'),
|
||||
metaMap = require('./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;
|
||||
};
|
||||
|
||||
module.exports = baseSetData;
|
Reference in New Issue
Block a user