7 lines
71 B
JavaScript
7 lines
71 B
JavaScript
|
|
function isFalsy(arg){
|
|
return !arg;
|
|
}
|
|
|
|
export default isFalsy;
|