Lines Matching refs:replace
7 const noAmps = original.replace('&', '&');
8 const noLt = noAmps.replace('<', '<');
9 const noGt = noLt.replace('>', '>');
10 const noApos = noGt.replace('"', '\\"');
11 return noApos.replace("'", "\\'");
36 .replace(/Hello App Display Name/g, name)
37 .replace(/HelloWorld/g, IOSConfig.XcodeUtils.sanitizedName(name))
38 .replace(/helloworld/g, IOSConfig.XcodeUtils.sanitizedName(name.toLowerCase()));
49 .replace(
55 .replace(/helloworld/g, IOSConfig.XcodeUtils.sanitizedName(name).toLowerCase());
60 entry.path = entry.path.replace(/gitignore$/, '.gitignore');