mirror of
https://github.com/cachix/install-nix-action.git
synced 2025-06-08 09:54:28 +00:00
v5
This commit is contained in:
parent
d1407282e6
commit
08403cd828
6774 changed files with 1602535 additions and 1 deletions
17
node_modules/lodash/_baseSetData.js
generated
vendored
Normal file
17
node_modules/lodash/_baseSetData.js
generated
vendored
Normal file
|
@ -0,0 +1,17 @@
|
|||
var identity = require('./identity'),
|
||||
metaMap = require('./_metaMap');
|
||||
|
||||
/**
|
||||
* 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;
|
||||
};
|
||||
|
||||
module.exports = baseSetData;
|
Loading…
Add table
Add a link
Reference in a new issue