
Security News
Socket Releases Free Certified Patches for Critical vm2 Sandbox Escape
A critical vm2 sandbox escape can allow untrusted JavaScript to break isolation and execute commands on the host Node.js process.
@canonical/utils
Advanced tools
Utility functions for the Pragma design system. This package contains battle-tested helpers that have proven useful across multiple packages.
bun add @canonical/utils
Creates a debounced version of a function that waits until a specified delay has passed since the last call before executing. Useful for search inputs, resize handlers, and other high-frequency events.
import { debounce } from "@canonical/utils";
const debouncedSearch = debounce(async (query: string) => {
const response = await fetch(`/api/search?q=${query}`);
return response.json();
}, 300);
// Multiple rapid calls result in only one execution
await debouncedSearch("hello"); // Cancelled by next call
await debouncedSearch("hello w"); // Cancelled by next call
await debouncedSearch("hello world"); // Executes after 300ms
// Cancel a pending execution
const promise = debouncedSearch("query");
promise.cancel();
The debounced function returns a promise and includes a cancel method. Each new call cancels any pending execution from previous calls.
Throttles a function to execute at most once per specified interval. Useful for scroll handlers, continuous input events, and rate-limited operations.
import { throttle } from "@canonical/utils";
const throttledResize = throttle(() => {
console.log("Window resized");
}, 500);
window.addEventListener("resize", throttledResize);
// Logs at most once every 500ms during continuous resizing
Formats numbers for human readability with appropriate suffixes and precision.
import { humanizeNumber } from "@canonical/utils";
humanizeNumber(1234); // "1.2K"
humanizeNumber(1234567); // "1.2M"
Returns the singular or plural form of a word based on a count.
import { pluralize } from "@canonical/utils";
pluralize(1, "item", "items"); // "item"
pluralize(5, "item", "items"); // "items"
Converts strings between different case conventions.
import { casing } from "@canonical/utils";
casing.toCamelCase("hello-world"); // "helloWorld"
casing.toKebabCase("helloWorld"); // "hello-world"
Throws an error if a condition is false. Useful for asserting assumptions in code.
import { invariant } from "@canonical/utils";
invariant(user != null, "User must be defined");
// TypeScript now knows user is not null
Functions only enter this package after proving useful across multiple packages. Premature abstraction is actively avoided. If a utility is only needed in one place, it belongs in that package until a second use case emerges.
Each function is fully typed with comprehensive JSDoc comments. The package has no runtime dependencies, keeping bundle impact minimal.
FAQs
Standard utility functions for Canonical's Web Engineering team
We found that @canonical/utils demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 26 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
A critical vm2 sandbox escape can allow untrusted JavaScript to break isolation and execute commands on the host Node.js process.

Research
Five malicious NuGet packages impersonate Chinese .NET libraries to deploy a stealer targeting browser credentials, crypto wallets, SSH keys, and local files.

Security News
pnpm 11 turns on a 1-day Minimum Release Age and blocks exotic subdeps by default, adding safeguards against fast-moving supply chain attacks.