6.0.0 • Published 3 years ago
trailblazer v6.0.0
trailblazer
trailblazer is a minimalist regular expression-generator for paths with named parameters.
Turn a path such as /:foo into a regular expression and extract the keys.
Installation
npm install trailblazerAPI
Function compile
export const compile = (path: string, options: Options) => Compile;- Create a regular expression from
pathand extract the key names.
import { compile } from 'trailblazer';
const path = '/foo/:bar';
const options = {
sensitive: false,
strict: false,
start: true,
end: true
};
const result = compile(path, options);
console.log(result.keys); // ['bar']
console.log(result.pattern); // /^\/foo\/([^\/]+)\/?$/i
result.pattern.test('/foo/123'); // true
result.pattern.exec('/foo/123'); // ['/foo/123', '123']Type Options
type Options = {
sensitive?: boolean;
strict?: boolean;
start?: boolean;
end?: boolean;
}sensitive: Whentrue, theRegExpwill be case sensitive.- Default:
false
- Default:
strict: Whentrue, theRegExpallows an optional trailing slash to match.- Default:
false
- Default:
start: Whentrue, theRegExpwill match from the beginning of the string.- Default:
true
- Default:
end: Whentrue, theRegExpwill match to the end of the string.- Default:
true
- Default:
Type Compile
type Compile = {
pattern: RegExp;
keys: string[];
}pattern: TheRegExpcreated for the input path.keys: An array of key names extracted from the input path.