1
0
forked from 0ad/0ad
0ad/binaries/data/mods/official/gui/test/functions_utility_entity.js

12 lines
242 B
JavaScript
Raw Normal View History

function GetAttrib(getAttribName)
{
// Simple helper function that elegantly checks if an entity attribute exists.
// Returns blank if it doesn't, or it's value if it does.
if (getAttribName)
return getAttribName;
else
return "";
}