I have a requirement that there is a 2 Clientlibs:
1)clientlibA ->clientlibA.js
2)clientlibB ->clientlibB.js
clientlibA.js
(function ($, $document, gAuthor) {
 "use strict";
  var sampleText="sample-text-1";
})($, $(document), Granite.author);
How can i access sampleText variable in clientlibB.js
 
...