You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
6 lines
290 B
6 lines
290 B
2 years ago
|
export default function desensitizeSubstring(inputString, start, end) {
|
||
|
// 保留部分非敏感信息,将敏感信息部分截取掉
|
||
|
let desensitizedString = inputString.substring(0, start) + "*".repeat(end - start) + inputString.substring(end);
|
||
|
return desensitizedString;
|
||
|
}
|