| 12345678910111213141516171819202122232425 | 'use strict';const {	isLiteral,	isStringLiteral,	isNumberLiteral,	isBigIntLiteral,	isNullLiteral,	isRegexLiteral,} = require('./literal.js');module.exports = {	isLiteral,	isStringLiteral,	isNumberLiteral,	isBigIntLiteral,	isNullLiteral,	isRegexLiteral,	isArrowFunctionBody: require('./is-arrow-function-body.js'),	isEmptyNode: require('./is-empty-node.js'),	isStaticRequire: require('./is-static-require.js'),	isUndefined: require('./is-undefined.js'),	isNewExpression: require('./is-new-expression.js'),};
 |