UNPKG

@xrengine/server-core

Version:

Shared components for XREngine server

9 lines (7 loc) 238 B
import { HookContext } from '@feathersjs/feathers' export default (...params: string[]): any => { const args = Array.from(params) return (hook: HookContext): boolean => { return hook.data && args.includes(hook.data.action) } }