1.0.1 • Published 9 years ago

enb-async-require v1.0.1

Weekly downloads
174
License
MIT
Repository
github
Last release
9 years ago

enb-async-require

Build Status Build status

Require files in async manner.

Usage example:

var asyncRequire = require('enb-async-require');

function someAsyncFunc () {
	returm asyncRequire('path/to/module').then(function (module) {
		//do stuff with required module here
	}
}