-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c311e21
commit 72bf4ba
Showing
1 changed file
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -173,7 +173,7 @@ const userSchema = s.record({ | |
email: s.string(), | ||
}); | ||
|
||
const userRecord = userSchema({id: 1, email: "[email protected]"}); | ||
const userRecord = userSchema({id: 1, email: '[email protected]'}); | ||
|
||
console.log(userRecord); | ||
``` | ||
|
@@ -463,8 +463,8 @@ const company = companySchema({ | |
name: 'Acme Corporation', | ||
phone: '+1-000-555-1234', | ||
address: '123 Fake St, Anytown, USA', | ||
openHours: "9AM-7PM", | ||
slogan: "We do business.", | ||
openHours: '9AM-7PM', | ||
slogan: 'We do business.', | ||
}); | ||
``` | ||
|
||
|
@@ -513,8 +513,8 @@ companySchema({ | |
name: 'Acme Corporation', | ||
phone: '+1-000-555-1234', | ||
address: '123 Fake St, Anytown, USA', | ||
openHours: "9AM-7PM", | ||
slogan: "We do business.", | ||
openHours: '9AM-7PM', | ||
slogan: 'We do business.', | ||
}); | ||
``` | ||
|
||
|
@@ -557,8 +557,8 @@ const company = companySchema({ | |
name: 'Acme Corporation', | ||
phone: '+1-000-555-1234', | ||
address: '123 Fake St, Anytown, USA', | ||
openHours: "9AM-7PM", | ||
slogan: "We do business.", | ||
openHours: '9AM-7PM', | ||
slogan: 'We do business.', | ||
}); | ||
console.log({company}); | ||
|