voca
Version:
The ultimate JavaScript string library
33 lines (28 loc) • 671 B
JavaScript
;
require('./internal/is_nil.js');
require('./is_string.js');
var coerce_to_string = require('./internal/coerce_to_string.js');
/**
* Checks whether `subject` is empty.
*
* @function isEmpty
* @static
* @since 1.0.0
* @memberOf Query
* @param {string} [subject=''] The string to verify.
* @return {boolean} Returns `true` if `subject` is empty or `false` otherwise
* @example
* v.isEmpty('');
* // => true
*
* v.isEmpty(' ');
* // => false
*
* v.isEmpty('sun');
* // => false
*/
function isEmpty(subject) {
var subjectString = coerce_to_string.coerceToString(subject);
return subjectString.length === 0;
}
module.exports = isEmpty;