index.js

'use strict';

const isNotUndefined = require('./isNotUndefined');
const isUndefined = require('./isUndefined');

/**
 * @namespace RA
 */
module.exports = {
  isNotUndefined,
  isUndefined,
};