Searched refs:sanitizeNpmPackageName (Results 1 – 2 of 2) sorted by relevance
1 import { sanitizeNpmPackageName } from '../npm';3 describe(sanitizeNpmPackageName, () => {6 expect(sanitizeNpmPackageName(name)).toBe(name); constant17 expect(sanitizeNpmPackageName(before)).toBe(after); constant
23 export function sanitizeNpmPackageName(name: string): string { function