UNPKG

openapi-path-templating

Version:

OpenAPI Path Templating parser, validator, resolver and matcher.

10 lines 381 B
import { identifiers, utilities } from 'apg-lite'; const slash = (state, chars, phraseIndex, phraseLength, data) => { if (state === identifiers.SEM_PRE) { data.push(['slash', utilities.charsToString(chars, phraseIndex, phraseLength)]); } else if (state === identifiers.SEM_POST) { /* not used in this example */ } return identifiers.SEM_OK; }; export default slash;