UNPKG

lasso-image

Version:

Get image info (URL, width and height) on both the server and the client

8 lines (7 loc) 200 B
exports.getImageInfo = function(path, options, callback) { if (typeof options === 'function') { callback = options; options = null; } callback(null, require(path)); };