nope/lib/helpers/dispatcherPathes.ts

15 lines
478 B
TypeScript
Raw Normal View History

2020-11-23 06:09:31 +00:00
export function getPropertyPath(identifier: string, name: string) {
2020-11-09 06:42:24 +00:00
return identifier + '.prop.' + name;
}
2020-11-23 06:09:31 +00:00
export function isPropertyPathCorrect(identifier: string, path: string) {
2020-11-09 06:42:24 +00:00
return path.startsWith(identifier + '.prop.');
}
2020-11-23 06:09:31 +00:00
export function getMethodPath(identifier: string, name: string) {
2020-11-09 06:42:24 +00:00
return identifier + '.method.' + name;
}
2020-11-23 06:09:31 +00:00
export function isMethodPathCorrect(identifier: string, path: string) {
2020-11-09 06:42:24 +00:00
return path.startsWith(identifier + '.method.');
}