UNPKG

@boost/decorators

Version:

Experimental decorators for common patterns.

8 lines (7 loc) 186 B
export function isClass( target: Function | Object, property?: string | symbol, descriptor?: unknown, ): boolean { return typeof target === 'function' && !property && !descriptor; }