Skip to content
#

umd

Here are 161 public repositories matching this topic...

gdorsi
gdorsi commented Feb 2, 2021

Hello there!

I've encountered a bug with the transpiling of the rest parameters.

Pratically the transpiler with something like this:

export function brokenArgsRest(fn, ...args) {
  return function () {
    fn(...args);
  };
}

Will treat the arguments object in the wrong way:

function brokenArgsRest(fn) {
  return function () {
    fn.apply(void 0, [].slice.call(

Improve this page

Add a description, image, and links to the umd topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the umd topic, visit your repo's landing page and select "manage topics."

Learn more