This repository has been archived by the owner on Mar 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 868
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
d198333
commit 66bfee4
Showing
3 changed files
with
39 additions
and
0 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 |
---|---|---|
|
@@ -2,3 +2,4 @@ | |
node_modules | ||
dist | ||
lib | ||
npm-debug.log |
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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Problem | ||
|
||
A short explanation of your problem or use-case is helpful! | ||
|
||
**Input** | ||
|
||
Here's how I'm using normalizr: | ||
|
||
```js | ||
// Add as much relevant code and input as possible | ||
// const mySchema = new Schema('myschema'); | ||
// normalize({ .../* fill in some input */ }, mySchema); | ||
``` | ||
|
||
**Output** | ||
|
||
Here's what I expect to see when I run the above: | ||
|
||
```js | ||
// What you expect to see after running normalizr with your provided input, schema, etc (above) | ||
// { | ||
// result: [1, 2], | ||
// entities: { ... } | ||
// } | ||
``` |
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Problem | ||
|
||
Explain the problem that this pull request aims to resolve. | ||
|
||
# Solution | ||
|
||
Explain your approach. Sometimes it helps to justify your approach against some others that you didn't choose to explain why yours is better. | ||
|
||
# TODO | ||
|
||
*Fill in the following:* | ||
|
||
- [ ] Add & Update Tests |