
Security News
Open Source Maintainers Feeling the Weight of the EUโs Cyber Resilience Act
The EU Cyber Resilience Act is prompting compliance requests that open source maintainers may not be obligated or equipped to handle.
@arcjet/sprintf
Advanced tools
@arcjet/sprintf
Arcjet platform-independent replacement for util.format.
This package is platform-independent in order to support multiple runtimes in varying environments, such as Edge Runtime, Node.js, Bun, Deno, and Cloudflare Workers.
npm install -S @arcjet/sprintf
import format from "@arcjet/sprintf";
format("Hello %s", "world") === "Hello world";
format("1 %i %d", 2, 3.0) === "1 2 3";
Substitutions will be made for the following character sequences if the matching
argument conforms to the type. For example, "%d"
will only be replaced by a
number, not a string or object.
Object substitution supports any value that is not undefined
.
%d
| %f
- Replaced if provided with a number.%i
- Replaced if provided with a number after Math.floor
is called on it.%O
| %o
| %j
- Replaced if provided with any value after
JSON.stringify
is called on it. Objects with circular references will be
replaced with [Circular]
. Functions will be replaced with the function name
or <anonymous>
if unnamed.%s
- Replaced if provided with a string.%%
- Replaced by the literal %
character.This implementation of this library is based on quick-format-unescaped, which is licensed MIT with licenses included in our source code.
The goal of this library is to be more restrictive than quick-format-unescaped
while maintaining as much compatibility as possible, since pino uses it to
format strings.
Licensed under the Apache License, Version 2.0.
1.0.0-beta.9 (2025-07-09)
keywords
to package.json
s (#4408) (4f09478)jco
name in dependabot (#4371) (809fe76)expect
, references to jest
(#4415) (2c44c39)files
fields in package.json
s (#4441) (fd7913b)nbsp
with regular space (#4503) (274114d)analyze
(#4564) (7ef59bb)FAQs
Arcjet platform-independent replacement for util.format
The npm package @arcjet/sprintf receives a total of 11,213 weekly downloads. As such, @arcjet/sprintf popularity was classified as popular.
We found that @arcjet/sprintf demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago.ย It has 3 open source maintainers 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
The EU Cyber Resilience Act is prompting compliance requests that open source maintainers may not be obligated or equipped to handle.
Security News
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
Research
/Security News
Undocumented protestware found in 28 npm packages disrupts UI for Russian-language users visiting Russian and Belarusian domains.