Every line of 'import javascript library' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your JavaScript code is secure.
102 function import_(libraryName) { 103 bootstrap(); 104 let loader = libraries.get(libraryName); 105 // TODO(vsm): A user might call this directly from JS (as we do in tests). 106 // We may want a different error type. 107 if (!loader) throwLibraryError('Library not found: ' + libraryName); 108 return loader.load(); 109 }
5 function loadJS(libs) { 6 libs = libs.split('|'); 7 for (var i=libs.length; i--;) { 8 document.write(""); 9 } 10 }
277 private load_script (script:typescript.api.Script) : void { 278 279 for(var n in script.modules) { 280 281 this.load_module( script.modules[n] ); 282 } 283 284 for(var n in script.interfaces) { 285 286 this.load_interface( script.interfaces[n] ); 287 } 288 289 for(var n in script.classes) { 290 291 this.load_class( script.classes[n] ); 292 } 293 294 for(var n in script.methods) { 295 296 this.load_method( script.methods[n] ); 297 } 298 299 for(var n in script.variables) { 300 301 this.load_variable( script.variables[n] ); 302 } 303 }
3 function importAll(...fns) { 4 importScripts(...fns.map(fn => new URL(fn, baseDir).href)); 5 }