mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-06 01:47:48 +00:00
Apply arrow function transform.
This commit is contained in:
@@ -8,8 +8,6 @@ import noop from './noop.js';
|
||||
* @param {Function} func The function to query.
|
||||
* @returns {*} Returns the metadata for `func`.
|
||||
*/
|
||||
var getData = !metaMap ? noop : function(func) {
|
||||
return metaMap.get(func);
|
||||
};
|
||||
var getData = !metaMap ? noop : func => metaMap.get(func);
|
||||
|
||||
export default getData;
|
||||
|
||||
Reference in New Issue
Block a user