UNPKG

cluedin-widget

Version:

This is the project for creating and managing widgets in CluedIn.

11 lines (8 loc) 220 B
module.exports = { addTokenToImage( url, token ) { if ( url && token && url.indexOf( 'blob?' ) > -1 ) { return url + '&size=medium&access_token=' + token; } return url; } };