UNPKG

tcomb

Version:

Type checking and DDD for JavaScript

9 lines (8 loc) 222 B
var isType = require('./isType'); var getFunctionName = require('./getFunctionName'); module.exports = function getTypeName(ctor) { if (isType(ctor)) { return ctor.displayName; } return getFunctionName(ctor); };