UNPKG

lux-framework

Version:

Build scalable, Node.js-powered REST APIs with almost no code.

18 lines (16 loc) 245 B
// @flow import type { Request } from '../../../../server'; /** * @private */ export default function getControllerName({ route: { controller: { constructor: { name } } } }: Request): string { return name; }