When passed an id, class or any CSS selector this script will add all instances of what is passed to an object. The object will then be looped through and any data-attributes with the key data-src
will have it's value copied to the src attribute loading the asset.
var pal = require('polite-asset-loader');
pal.load('.class');
pal.load('#id');
pal.load('body > img:nth-child(3)');