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