UNPKG

lux-framework

Version:

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

10 lines (8 loc) 172 B
// @flow import { MIME_TYPE } from '../constants'; /** * @private */ export default function isJSONAPI(value: string): boolean { return value.startsWith(MIME_TYPE); }