mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-12 16:35:45 +01:00
11 lines
221 B
JavaScript
11 lines
221 B
JavaScript
// @flow
|
|
import { validation } from "@scm-manager/ui-components";
|
|
|
|
const isNameValid = validation.isNameValid;
|
|
|
|
export { isNameValid };
|
|
|
|
export const isMemberNameValid = (name: string) => {
|
|
return isNameValid(name);
|
|
};
|