mirror of
https://github.com/swc-project/swc.git
synced 2024-12-19 19:52:21 +03:00
11 lines
155 B
JavaScript
11 lines
155 B
JavaScript
function a(a) {
|
|
return a != null;
|
|
}
|
|
function b(b, c) {
|
|
if (b == null || a(b)) {
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
module.exports = b;
|