Hi I want use this library in Angular but I'm not sure if it's possible because I can find Angular dependency to inject
How are you loading other libraries in your project?
Async is available on npm, bower, as a standalone script, and many other package managers.
@jairoGilC If you include the Async library it will be available on the $window object:
$window.async.each(things, function(thing, callback) {
// Do stuff
callback();
}, function(err) {
// Do more stuff
});
This seems to be more of an Angular question than an Async question.
Most helpful comment
@jairoGilC If you include the Async library it will be available on the $window object: