UNPKG

@o3r/core

Version:
9 lines 475 B
/** * Compute the name of the component with the library's name to generate unique component identifier used in metadata and different modules * @param componentName Name of the component to get the configuration * @param libraryName Name of the library the component is coming from */ export function computeItemIdentifier(componentName, libraryName) { return (libraryName ? libraryName + '#' : '') + componentName; } //# sourceMappingURL=component.identifier.js.map