source:
node_modules/es-toolkit/dist/compat/function/partial.mjs
| Last change on this file was a762898, checked in by , 5 months ago | |
|---|---|
|
|
| File size: 250 bytes | |
| Line | |
|---|---|
| 1 | import { partialImpl } from '../../function/partial.mjs'; |
| 2 | |
| 3 | function partial(func, ...partialArgs) { |
| 4 | return partialImpl(func, partial.placeholder, ...partialArgs); |
| 5 | } |
| 6 | partial.placeholder = Symbol('compat.partial.placeholder'); |
| 7 | |
| 8 | export { partial }; |
Note:
See TracBrowser
for help on using the repository browser.
