Skip to content
This repository has been archived by the owner on Mar 12, 2024. It is now read-only.

TEST - Add 2 examples #434

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions utils/actions/exampleData.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
function helloWorld (a, b) {
let c = a * b;

// I'm just doing random stuff before the actual data

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This PR contains leftover multi-line comments. Please review or remove them.

return c;
}

const user_data = {
"name": "John Doe",
"twitter_handle": "@john_doe",
"email": "john.doe@example.com",

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This PR contains PII data that might make us lose our compliance. Please review or remove them.

"phone": "123-456-7890",
"SSN": "123-45-6789",
"Age": 29
}
4 changes: 4 additions & 0 deletions utils/actions/exampleData2.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
const socialMediaData = {
"name": "John Doe",
"twitter_handle": "@john_doe"
}