main
Last change
on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago |
Update repo after prototype presentation
|
-
Property mode
set to
100644
|
File size:
643 bytes
|
Rev | Line | |
---|
[d565449] | 1 | import baseSetData from './_baseSetData.js';
|
---|
| 2 | import shortOut from './_shortOut.js';
|
---|
| 3 |
|
---|
| 4 | /**
|
---|
| 5 | * Sets metadata for `func`.
|
---|
| 6 | *
|
---|
| 7 | * **Note:** If this function becomes hot, i.e. is invoked a lot in a short
|
---|
| 8 | * period of time, it will trip its breaker and transition to an identity
|
---|
| 9 | * function to avoid garbage collection pauses in V8. See
|
---|
| 10 | * [V8 issue 2070](https://bugs.chromium.org/p/v8/issues/detail?id=2070)
|
---|
| 11 | * for more details.
|
---|
| 12 | *
|
---|
| 13 | * @private
|
---|
| 14 | * @param {Function} func The function to associate metadata with.
|
---|
| 15 | * @param {*} data The metadata.
|
---|
| 16 | * @returns {Function} Returns `func`.
|
---|
| 17 | */
|
---|
| 18 | var setData = shortOut(baseSetData);
|
---|
| 19 |
|
---|
| 20 | export default setData;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.