Gathering detailed insights and metrics for @types/quick-format-unescaped
Gathering detailed insights and metrics for @types/quick-format-unescaped
Gathering detailed insights and metrics for @types/quick-format-unescaped
Gathering detailed insights and metrics for @types/quick-format-unescaped
The repository for high quality TypeScript type definitions.
npm install @types/quick-format-unescaped
Typescript
Module System
TypeScript (99.84%)
JavaScript (0.15%)
Shell (0.01%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
NOASSERTION License
50,039 Stars
89,741 Commits
30,435 Forks
640 Watchers
6 Branches
9,957 Contributors
Updated on Jul 14, 2025
Latest Version
4.0.3
Package Id
@types/quick-format-unescaped@4.0.3
Unpacked Size
4.68 kB
Size
1.99 kB
File Count
5
Published on
Nov 21, 2023
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
npm install --save @types/quick-format-unescaped
This package contains type definitions for quick-format-unescaped (https://github.com/davidmarkclements/quick-format-unescaped#readme).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/quick-format-unescaped.
1/** 2 * Alternative to NodeJS `util.format`. Does not escape strings. 3 * @description Uses `JSON.stringify` instead of `util.inspect`, this means functions _will not be serialized_. 4 * @param fmt A printf-like format string. Example: `'hello %s %j %d'` 5 * @param parameters Values to be inserted into the `fmt` string. Example: `['world', {obj:true}]` 6 * @param options Passing an options object as the third parameter with a `stringify` will mean any objects will be passed 7 * to the supplied function instead of an the internal `tryStringify` function. This can be useful when using augmented 8 * capability serializers such as `fast-safe-stringify` or `fast-redact`. 9 * @example 10 * format('hello %s %o', ['world', {obj: true}]) 11 * // 'hello world {"obj": true}' 12 */ 13declare function format(fmt: string, parameters: readonly unknown[], options?: format.Options): string; 14 15declare namespace format { 16 interface Options { 17 /** 18 * Function that stringifies objects. 19 */ 20 stringify: (o: unknown) => string; 21 } 22} 23 24export = format; 25
These definitions were written by Adam Vigneaux.
No vulnerabilities found.
Reason
30 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 10
Reason
security policy file detected
Details
Reason
no dangerous workflow patterns detected
Reason
0 existing vulnerabilities detected
Reason
no binaries found in the repo
Reason
Found 27/30 approved changesets -- score normalized to 9
Reason
license file detected
Details
Reason
dependency not pinned by hash detected -- score normalized to 8
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
project is not fuzzed
Details
Score
Last Scanned on 2025-07-14
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More