MCPcopy Create free account
hub / github.com/aosabook/500lines / invokeLater

Function invokeLater

spreadsheet/code/lib/angular.js:2010–2016  ·  view source on GitHub ↗

* @param {string} provider * @param {string} method * @param {String=} insertMethod * @returns {angular.Module}

(provider, method, insertMethod, queue)

Source from the content-addressed store, hash-verified

2008 * @returns {angular.Module}
2009 */
2010 function invokeLater(provider, method, insertMethod, queue) {
2011 if (!queue) queue = invokeQueue;
2012 return function() {
2013 queue[insertMethod || 'push']([provider, method, arguments]);
2014 return moduleInstance;
2015 };
2016 }
2017 });
2018 };
2019 });

Callers 1

setupModuleLoaderFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected