|
Last change
on this file was a762898, checked in by istevanoska <ilinastevanoska@…>, 5 months ago |
|
Added visualizations
|
-
Property mode
set to
100644
|
|
File size:
290 bytes
|
| Line | |
|---|
| 1 | import { partialRightImpl } from '../../function/partialRight.mjs';
|
|---|
| 2 |
|
|---|
| 3 | function partialRight(func, ...partialArgs) {
|
|---|
| 4 | return partialRightImpl(func, partialRight.placeholder, ...partialArgs);
|
|---|
| 5 | }
|
|---|
| 6 | partialRight.placeholder = Symbol('compat.partialRight.placeholder');
|
|---|
| 7 |
|
|---|
| 8 | export { partialRight };
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.