Skip to content
#

module-bundler

Here are 43 public repositories matching this topic...

A bundler for javascript and friends. Packs many modules into a few bundled assets. Code Splitting allows for loading parts of the application on demand. Through "loaders", modules can be CommonJs, AMD, ES6 modules, CSS, Images, JSON, Coffeescript, LESS, ... and your custom stuff.

  • Updated Apr 11, 2021
  • JavaScript
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 module-bundler 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 module-bundler topic, visit your repo's landing page and select "manage topics."

Learn more