
Security News
Django Joins curl in Pushing Back on AI Slop Security Reports
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
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: string
A 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`]
]);
Replacer
If 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.
The npm package detokenizer receives a total of 0 weekly downloads. As such, detokenizer popularity was classified as not popular.
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.
Security News
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
Security News
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.