
2 changed files with 12 additions and 7 deletions
@ -0,0 +1,12 @@ |
|||
function stringIsEmpty(str) { |
|||
return str === undefined || str === null || str === '' |
|||
} |
|||
|
|||
function stringIsNotEmpty(str) { |
|||
return !stringIsEmpty(str) |
|||
} |
|||
|
|||
export { |
|||
stringIsEmpty, |
|||
stringIsNotEmpty |
|||
} |
@ -1,7 +0,0 @@ |
|||
export default { |
|||
data() { |
|||
return { |
|||
|
|||
} |
|||
} |
|||
} |
Loading…
Reference in new issue