blob: 011b81da5209c2f63fe3a11e12aa79ccf2808a79 [file] [log] [blame]
/* exported PropertyInterface */
var PropertyInterface = (function () {
return function (propertyName, propertyGroup) {
var interfaceFunction = {
_name: propertyName,
};
function _propertyGroup(val) {
val = val === undefined ? 1 : val;
if (val <= 0) {
return interfaceFunction;
}
return propertyGroup(val - 1);
}
return _propertyGroup;
};
}());