-
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add basic support for custom merging
- Loading branch information
1 parent
38a9fff
commit a843057
Showing
5 changed files
with
92 additions
and
16 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
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
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
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,23 @@ | ||
import test from "ava"; | ||
|
||
import { deepmergeCustom } from "../src/deepmerge"; | ||
|
||
test("custom merge strings", (t) => { | ||
const v = "a"; | ||
const x = "b"; | ||
const y = "c"; | ||
const z = "d"; | ||
|
||
const expected = "a b c d"; | ||
|
||
const myDeepmerge = deepmergeCustom((object1, object2) => { | ||
if (typeof object1 !== "string" || typeof object2 !== "string") { | ||
throw new TypeError("Assertion error"); | ||
} | ||
return `${object1} ${object2}`; | ||
}); | ||
|
||
const merged = myDeepmerge(v, x, y, z); | ||
|
||
t.deepEqual(merged, expected); | ||
}); |
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