Error while trying to access Custom Label from Skuid (from JavaScript)

I got this working.

If anyone out there is looking for same problem solution:

The reason was : The Skuid.utils.userInfo object is only available once the page is loaded.

So if you intend to access this in “inline” snippet
$(document.body).one(‘pageload’,function(){

//Here you should be able to access as shown below
 var specialSegment = skuid.utils.mergeAsText(“global”,“{{$Label.Special_Partner}}”);    console.log(‘specialSegment from Label’,specialSegment);

});