Learn more  » Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Bower components Debian packages RPM packages NuGet packages

skava / exotic   js

Repository URL to install this package:

Version: 2.0.8 

/ src / types / @omni / presets / notRealOrIsEmpty.ts

const and = require('chaintools/conditional/and')
const not = require('chaintools/conditional/not')
const isReal = require('./real')
const isEmpty = require('./empty')

/**
 * @SIZE: another 10bytes for these fns
 * @name isNotRealOrIsEmpty
 *
 * @see is/isReal
 * @see is/isEmpty
 * @see conditional/and
 * @see conditional/not
 *
 * @type {Function}
 */
module.exports = and(not(isReal), isEmpty)