Skip to content

Commit 7d0d220

Browse files
author
Colby Rabideau
committed
whoops flow types for new functions
1 parent 035d1e0 commit 7d0d220

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/isNull.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
* @param {any} subject
77
* @return {boolean}
88
*/
9-
export default function isNull(subject) {
9+
export default function isNull(subject: any) {
1010
return subject === null;
1111
}

src/isUndefined.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
* @param {any} subject
77
* @return {boolean}
88
*/
9-
export default function isUndefined(subject) {
9+
export default function isUndefined(subject: any) {
1010
return subject === undefined;
1111
}

0 commit comments

Comments
 (0)