source: node_modules/es-toolkit/dist/compat/function/partialRight.mjs

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 
1import { partialRightImpl } from '../../function/partialRight.mjs';
2
3function partialRight(func, ...partialArgs) {
4 return partialRightImpl(func, partialRight.placeholder, ...partialArgs);
5}
6partialRight.placeholder = Symbol('compat.partialRight.placeholder');
7
8export { partialRight };
Note: See TracBrowser for help on using the repository browser.