Lines Matching refs:name
5 export function sanitizedName(name: string) {
6 return name
15 constructor(private name: string) { property in Transformer
25 .replace(/Hello App Display Name/g, this.name)
26 .replace(/HelloWorld/g, sanitizedName(this.name))
27 .replace(/helloworld/g, sanitizedName(this.name.toLowerCase()));
33 export function createEntryResolver(name: string) {
35 if (name) {
40 entry.path.includes('android') ? sanitizedName(name.toLowerCase()) : sanitizedName(name)
42 .replace(/helloworld/g, sanitizedName(name).toLowerCase());
52 export function createFileTransform(name: string) {
71 name
73 return new Transformer(name);