Sha256: b2a2251c265920e355cf5542ac81d3535947c87db99fb329eb9addfee85515b4
Contents?: true
Size: 456 Bytes
Versions: 264
Compression:
Stored size: 456 Bytes
Contents
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;
Version data entries
264 entries across 262 versions & 29 rubygems