
Product
Socket for Jira Is Now Available
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.
detokenizer
Advanced tools
Replace tokens in a string based on token value map.
Supports dynamic tokens (regular expressions), and sync & async replacer functions.
npm install detokenizer
Basic:
const {detokenize} = require('detokenizer');
detokenize('Hello {name}!', {'{name}': 'John'});
// => 'Hello John!'
Dynamic tokens:
detokenize('Hello {name}! Your email is {emoji:envelope} {email}.', [
['{name}', 'John'],
['{email}', 'john@example.com'],
[/{emoji:(?<id>[a-z0-9]+)}/i, (token, match) => match.groups.id === 'envelope' ? '✉️' : '']
]);
// => 'Hello John! Your email is ✉️ john@example.com.'
Async:
const {detokenizeAsync} = require('detokenizer');
// Transform issue ids into anchor links with titles
await detokenizeAsync('Issue #42', [
[
/#(?<id>\d+)/,
async (token, match) => {
const issueTitle = await retrieveIssueTitle(match.groups.id);
return `<a href="..." title="${issueTitle}">#${match.groups.id}</a>`;
}
]
]);
// => 'Issue <a href="..." title="Issue title">#42</a>'
Token escaping:
Add escape sequences to be replaced out as last tokens. (use dynamic tokens (regular expressions) for more advanced replacing)
detokenize('\{foo\} value is {foo}', {
'{foo}': 'bar',
'\\{': '{',
'\\}': '}',
});
// => '{foo} value is bar'
When using regular expressions as tokens to match against, DO NOT use the g (global) flag, or it'll break tokenizing.
Exports:
detokenize(input, values)Parameters:
input: stringA string to run the replacer on.
values: Record<string, string | number | Replacer> | Array<[string | RegExp, string | number | Replacer]>Values to substitute tokens with.
It can either be a basic key: value object:
detokenize('...', {
foo: 'value',
bar: (token) => `you used ${token} token`
});
Or if you want the dynamic tokens support, an array of map like entries:
detokenize('...', [
['foo', 'value'],
[/bar/i, (token, match) => `you used ${match[0]} token`]
]);
ReplacerIf assigned to a string token, replacer is:
(token: string) => string | number;
If assigned to a RegExp token, it is:
(token: RegExp, match: RegExpExecArray) => string | number;
Example.
const emojis = {
envelope: '✉️',
// ...
}
const emojiToken = /{emoji:(?<id>[a-z0-9]+)}/i;
function emojiReplacer(token, match) {
return emojis[match.groups.id] || '';
}
detokenize('{emoji:envelope}', [[emojiToken, emojiReplacer]]);
detokenizeAsync(input, values): Promise<string>Same API as sync version, but Replacer can return a promise that resolves with a string or a number.
// Transform issue ids into anchor links with titles
await detokenizeAsync('Issue #42', [
[
/#(?<id>\d+)/,
async (token, match) => {
const issueTitle = await retrieveIssueTitle(match.groups.id);
return `<a href="..." title="${issueTitle}">#${match.groups.id}</a>`;
}
]
]);
// => 'Issue <a href="..." title="Issue title">#42</a>'
FAQs
Replace tokens in a string.
We found that detokenizer demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Product
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.