Changelog and markdown update

This commit is contained in:
Snarling
2023-04-28 14:19:30 -04:00
parent e1aff1a315
commit 8f684fa74c
41 changed files with 397 additions and 1002 deletions

View File

@@ -32,23 +32,11 @@ This function will return a list of positions at a specific company.
This function will return the position list if the company name is valid.
## Example 1
## Example
```js
// NS1:
var COMPANY_NAME = "Noodle Bar";
var jobList = singularity.getCompanyPositions(COMPANY_NAME);
```
## Example 2
```js
// NS2:
const COMPANY_NAME = "Noodle Bar";
let jobList = ns.singularity.getCompanyPositions(COMPANY_NAME);
const companyName = "Noodle Bar";
const jobList = ns.singularity.getCompanyPositions(companyName);
```