rofrischmann/tokenize-sync

View on GitHub
modules/isEmpty.js

Summary

Maintainability
A
0 mins
Test Coverage
/* @flow */
export default function isEmpty(str: string): boolean {
  return str.length === 0
}