isNotEmpty.js 84 B

12345
  1. 'use strict';
  2. module.exports = function isNotEmpty() {
  3. return !this.isEmpty();
  4. };