Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
33 lines
1.4 KiB
Plaintext
33 lines
1.4 KiB
Plaintext
Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
|
|
/**
|
|
* Tagged template function which returns parameterized representation of the message
|
|
* For example: parameterize`This is a log statement with ${x} and ${y} params`, would return:
|
|
* "__sentry_template_string__": 'This is a log statement with %s and %s params',
|
|
* "__sentry_template_values__": ['first', 'second']
|
|
*
|
|
* @param strings An array of string values splitted between expressions
|
|
* @param values Expressions extracted from template string
|
|
*
|
|
* @returns A `ParameterizedString` object that can be passed into `captureMessage` or Sentry.logger.X methods.
|
|
*/
|
|
function parameterize(strings, ...values) {
|
|
const formatted = new String(String.raw(strings, ...values)) ;
|
|
formatted.__sentry_template_string__ = strings.join('\x00').replace(/%/g, '%%').replace(/\0/g, '%s');
|
|
formatted.__sentry_template_values__ = values;
|
|
return formatted;
|
|
}
|
|
|
|
/**
|
|
* Tagged template function which returns parameterized representation of the message.
|
|
*
|
|
* @param strings An array of string values splitted between expressions
|
|
* @param values Expressions extracted from template string
|
|
* @returns A `ParameterizedString` object that can be passed into `captureMessage` or Sentry.logger.X methods.
|
|
*/
|
|
const fmt = parameterize;
|
|
|
|
exports.fmt = fmt;
|
|
exports.parameterize = parameterize;
|
|
//# sourceMappingURL=parameterize.js.map
|