openapi-path-templating
Version:
OpenAPI Path Templating parser, validator, resolver and matcher.
11 lines • 430 B
JavaScript
import { identifiers, utilities } from 'apg-lite';
const pathTemplate = (state, chars, phraseIndex, phraseLength, data) => {
if (state === identifiers.SEM_PRE) {
if (Array.isArray(data) === false) {
throw new Error("parser's user data must be an array");
}
data.push(['path-template', utilities.charsToString(chars, phraseIndex, phraseLength)]);
}
return identifiers.SEM_OK;
};
export default pathTemplate;