UNPKG

lux-framework

Version:

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

10 lines (8 loc) 160 B
// @flow import { extname } from 'path'; /** * @private */ export default function isJSFile(target: string): boolean { return extname(target) === '.js'; }