'use strict';
const isNotUndefined = require('./isNotUndefined');
const isUndefined = require('./isUndefined');
const isNull = require('./isNull');
const isNotNull = require('./isNotNull');
/**
* @namespace RA
*/
module.exports = {
isNotUndefined,
isUndefined,
isNull,
isNotNull,
};