in bower_modules/sinonjs/sinon.js [435:448]
ascii.constructorName = function (object) {
var name = buster.functionName(object && object.constructor);
var excludes = this.excludeConstructors || buster.format.excludeConstructors || [];
for (var i = 0, l = excludes.length; i < l; ++i) {
if (typeof excludes[i] == "string" && excludes[i] == name) {
return "";
} else if (excludes[i].test && excludes[i].test(name)) {
return "";
}
}
return name;
};