@newdash/newdash
Version:
javascript/typescript utility library
13 lines (12 loc) • 533 B
TypeScript
export default setWrapToString;
/**
* Sets the `toString` method of `wrapper` to mimic the source of `reference`
* with wrapper details in a comment at the top of the source body.
*
* @private
* @param {Function} wrapper The function to modify.
* @param {Function} reference The reference function.
* @param {number} bitmask The bitmask flags. See `createWrap` for more details.
* @returns {Function} Returns `wrapper`.
*/
declare function setWrapToString(wrapper: Function, reference: Function, bitmask: number): Function;