mirror of
https://github.com/nunocoracao/blowfish.git
synced 2025-04-21 04:31:53 +02:00
14 lines
390 B
JavaScript
14 lines
390 B
JavaScript
import baseSetToString from './_baseSetToString.js';
|
|
import shortOut from './_shortOut.js';
|
|
|
|
/**
|
|
* Sets the `toString` method of `func` to return `string`.
|
|
*
|
|
* @private
|
|
* @param {Function} func The function to modify.
|
|
* @param {Function} string The `toString` result.
|
|
* @returns {Function} Returns `func`.
|
|
*/
|
|
var setToString = shortOut(baseSetToString);
|
|
|
|
export default setToString;
|