-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore@small * log * fix: view.or typings * fix lensSatisfies * chore@small * feat@fix issue * fix dtslint issue * feat@pin dep
- Loading branch information
1 parent
4b77a89
commit 53a0dc6
Showing
14 changed files
with
1,388 additions
and
1,983 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
Large diffs are not rendered by default.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -1,9 +1,9 @@ | ||
import { propFn } from "./prop"; | ||
import { propFn } from './prop.js'; | ||
|
||
export function hasIn(searchProperty, obj) { | ||
if (arguments.length === 1){ | ||
return (_obj) => hasIn(searchProperty, _obj); | ||
} | ||
if (arguments.length === 1) { | ||
return (_obj) => hasIn(searchProperty, _obj); | ||
} | ||
|
||
return propFn(searchProperty, obj) !== undefined | ||
} | ||
return propFn(searchProperty, obj) !== undefined; | ||
} |
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 |
---|---|---|
@@ -1,9 +1,9 @@ | ||
import { propFn } from "./prop"; | ||
import { propFn } from './prop.js'; | ||
|
||
export function hasIn(searchProperty, obj) { | ||
if (arguments.length === 1){ | ||
return (_obj) => hasIn(searchProperty, _obj); | ||
} | ||
if (arguments.length === 1) { | ||
return (_obj) => hasIn(searchProperty, _obj); | ||
} | ||
|
||
return propFn(searchProperty, obj) !== undefined | ||
} | ||
return propFn(searchProperty, obj) !== undefined; | ||
} |
Oops, something went wrong.