Dashboard sipadu mbip
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

modules.txt 261B

12345678
  1. //------ underscore.js ------
  2. export default function (obj) {};
  3. export function each(obj, iterator, context) {};
  4. export { each as forEach };
  5. export function something() {};
  6. //------ main.js ------
  7. import _, { each, something as otherthing } from 'underscore';