Fast and reliable utility to asynchronously load multiple css files
npm install loadcss

Fast and reliable utility to asynchronously load multiple css files and apply to
the document.
``bash`
$ npm install loadcss
`js
import loadcss from 'loadcss';
// load a single css file
loadcss('/foo.css', links => {
links.forEach(link => console.log(link.href));
});
// load multiple css files
loadcss(['/a/foo.css', '/b/bar.css'], links => {
links.forEach(link => console.log(link.href));
});
`
`bash``
$ npm install
$ npm test