2021-10-30 18:34:14 +02:00
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
[Home ](./index.md ) > [bitburner ](./bitburner.md ) > [NS ](./bitburner.ns.md ) > [peek ](./bitburner.ns.peek.md )
## NS.peek() method
2021-11-03 23:16:10 +01:00
Get a copy of the data from a port without popping it.
2021-10-30 18:34:14 +02:00
< b > Signature:< / b >
```typescript
2021-11-04 01:19:52 +01:00
peek(port: number): any;
2021-10-30 18:34:14 +02:00
```
## Parameters
| Parameter | Type | Description |
| --- | --- | --- |
2021-11-03 05:33:14 +01:00
| port | number | Port to peek. Must be an integer between 1 and 20. |
2021-10-30 18:34:14 +02:00
< b > Returns:< / b >
2021-11-04 01:19:52 +01:00
any
2021-10-30 18:34:14 +02:00
Data in the specified port.
## Remarks
2021-10-30 21:46:34 +02:00
RAM cost: 1 GB
2021-10-30 18:34:14 +02:00
2021-11-03 23:16:10 +01:00
This function is used to peek at the data from a port. It returns the first element in the specified port without removing that element. If the port is empty, the string “NULL PORT DATA” will be returned.