Home
last modified time | relevance | path

Searched refs:sanitizeNpmPackageName (Results 1 – 2 of 2) sorted by relevance

/expo/packages/@expo/cli/src/utils/__tests__/
H A Dnpm-test.ts1 import { sanitizeNpmPackageName } from '../npm';
3 describe(sanitizeNpmPackageName, () => {
6 expect(sanitizeNpmPackageName(name)).toBe(name); constant
17 expect(sanitizeNpmPackageName(before)).toBe(after); constant
/expo/packages/@expo/cli/src/utils/
H A Dnpm.ts23 export function sanitizeNpmPackageName(name: string): string { function