Use double quotes for identifiers in error messages

This commit is contained in:
Daniel Gasienica 2018-03-23 18:24:50 -04:00
parent 06e7bca276
commit 867f73b80a
6 changed files with 15 additions and 15 deletions

View file

@ -27,7 +27,7 @@ const REDACTION_PLACEHOLDER = '[REDACTED]';
// redactPhoneNumbers :: String -> String
exports.redactPhoneNumbers = (text) => {
if (!isString(text)) {
throw new TypeError('`text` must be a string');
throw new TypeError('"text" must be a string');
}
return text.replace(PHONE_NUMBER_PATTERN, `+${REDACTION_PLACEHOLDER}$1`);
@ -36,7 +36,7 @@ exports.redactPhoneNumbers = (text) => {
// redactGroupIds :: String -> String
exports.redactGroupIds = (text) => {
if (!isString(text)) {
throw new TypeError('`text` must be a string');
throw new TypeError('"text" must be a string');
}
return text.replace(
@ -49,7 +49,7 @@ exports.redactGroupIds = (text) => {
// redactSensitivePaths :: String -> String
exports.redactSensitivePaths = (text) => {
if (!isString(text)) {
throw new TypeError('`text` must be a string');
throw new TypeError('"text" must be a string');
}
if (!isRegExp(APP_ROOT_PATH_PATTERN)) {