Sha256: 4498014ff66c109e6bfd37038cc13f2f74870172b84814e38572ace56402b9dd
Contents?: true
Size: 603 Bytes
Versions: 88
Compression:
Stored size: 603 Bytes
Contents
// pretend this file is 1 MB // // app_main.js is going to require() it and browserify.yml is going to tell it to use --require on it // // app_secondary.js is going to require() it too but we know app_main.js is always going to be loaded // so browserify.yml will be configured to mark it as --external so it is not bundled in // // this results in app_main.js taking the cost of loading app_a_huge_library.js // // and app_secondary.js saving the cost of loading app_a_huge_library.js (because again, // we know a priori that something else has loaded it) module.exports = "THIS IS A HUGE LIBRARY";
Version data entries
88 entries across 44 versions & 1 rubygems