|
Last change
on this file since ba17441 was a762898, checked in by istevanoska <ilinastevanoska@…>, 5 months ago |
|
Added visualizations
|
-
Property mode
set to
100644
|
|
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.