* Creates a function that provides `value` to the wrapper function as its * first argument. Additional arguments provided to the function are appended * to those provided to the wrapper function. The wrapper is executed with * the `this` binding of the created function. * *
(value, wrapper)
| 40869 | * // => '<p>Fred, Wilma, & Pebbles</p>' |
| 40870 | */ |
| 40871 | function wrap(value, wrapper) { |
| 40872 | return createWrapper(wrapper, 16, [value]); |
| 40873 | } |
| 40874 | |
| 40875 | /*--------------------------------------------------------------------------*/ |
| 40876 |
no test coverage detected