@newdash/newdash
Version:
javascript/typescript utility library
11 lines (10 loc) • 340 B
TypeScript
/**
* The base implementation of `setToString` without support for hot loop shorting.
*
* @private
* @param {Function} func The function to modify.
* @param {Function} string The `toString` result.
* @returns {Function} Returns `func`.
*/
declare var baseSetToString: (func: any, string: any) => any;
export default baseSetToString;