mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-08 08:43:53 +01:00
34 lines
628 B
Markdown
34 lines
628 B
Markdown
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
|
|
[Home](./index.md) > [bitburner](./bitburner.md) > [NS](./bitburner.ns.md) > [vsprintf](./bitburner.ns.vsprintf.md)
|
|
|
|
## NS.vsprintf() method
|
|
|
|
Format a string with an array of arguments.
|
|
|
|
**Signature:**
|
|
|
|
```typescript
|
|
vsprintf(format: string, args: any[]): string;
|
|
```
|
|
|
|
## Parameters
|
|
|
|
| Parameter | Type | Description |
|
|
| --- | --- | --- |
|
|
| format | string | String to format. |
|
|
| args | any\[\] | Formatting arguments. |
|
|
|
|
**Returns:**
|
|
|
|
string
|
|
|
|
Formatted text.
|
|
|
|
## Remarks
|
|
|
|
RAM cost: 0 GB
|
|
|
|
see: https://github.com/alexei/sprintf.js
|
|
|